Exploratory Data Analysis
Q1: What neighbourhoods are the listings in?
Q2: What is the distribution of the prices of the listings?
Q3 What is the distribution of prices by neighbourhood?
Q4 What is the relationship between quantitative data variables and the price?
Q5 What is the association between binary variables and price?
Q6 What is the association between categorical or ordinal variables and price?
Q7 What is the association between datetime variables and price?
Q8 Are bedroom numbers highly correlated to price?
Q9 Are some AirBnBs mispriced?
Q10 Are review ratings related to the price of listings?
Linear Modelling
Drop unuseful features
Convert datetimes to days since the date the data was scraped
Removing NAs
Making dummy variables
Fitting the model and predicting
I chose a dataset of Airbnb listings from Vancouver, Canada spanning the month of April 2021. If a potential Airbnb host wanted to set a price for their listing, they might want to know what everyone else is setting their prices at, and what features of their listing might justify the price.
The following three broad questions guided the rest of the research questions in this analysis:
I obtained data from Inside AirBNB.
An associated Medium post is here.
Inside AirBNB provides 5 files (I've the filenames to avoid redundancy). A data dictionary is here.
listings_summary.csv (was listings.csv)listings.csv (was listings.csv.gz)reviews_summary.csv (was reviews.csv)reviews.csv (was reviews.csv.gz)calendar.csvInspecting the data dict, I decided to use only listings_summary.csv and selected features from the listings.csv, as the reviews.csv, calendar.csv, and reviews_summary.csv are pretty well summarized and captured in the listings.csv anyways.
# Standard imports
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import json
import seaborn as sns
plt.style.use('seaborn-darkgrid')
%matplotlib inline
pd.options.display.max_rows = 5000
pd.options.display.max_columns = 500
# Drawing circles
from matplotlib.patches import Ellipse
# Map plotting
import geopandas as gpd
import contextily as ctx
# Use this is stitch together custom scale ticks
from itertools import chain
from IPython.core.display import display, HTML
# Linear modelling
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
from sklearn.metrics import r2_score, mean_squared_error, roc_curve, auc, RocCurveDisplay
# Correlation metrics
from scipy.stats import spearmanr, pearsonr
# Two sample tests
from scipy.stats import ttest_ind, mannwhitneyu, mood
# Multiple hypothesis testing correction
from statsmodels.stats.multitest import multipletests
# Read in data
listings_summary = pd.read_csv('data/listings_summary.csv')
listings = pd.read_csv('data/listings.csv')
listings_summary¶This is what listings_summary looks like:
listings_summary.head()
| id | name | host_id | host_name | neighbourhood_group | neighbourhood | latitude | longitude | room_type | price | minimum_nights | number_of_reviews | last_review | reviews_per_month | calculated_host_listings_count | availability_365 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 10080 | D1 - Million Dollar View 2 BR | 30899 | Rami | NaN | Downtown | 49.28872 | -123.12046 | Entire home/apt | 150 | 90 | 16 | 2017-02-26 | 0.14 | 40 | 346 |
| 1 | 13358 | Monthly (or Longer ) Designer One Bedroom Down... | 52116 | Lynn | NaN | West End | 49.28201 | -123.12669 | Entire home/apt | 85 | 30 | 430 | 2021-01-01 | 3.27 | 1 | 98 |
| 2 | 13490 | Vancouver's best kept secret | 52467 | Iris | NaN | Kensington-Cedar Cottage | 49.25622 | -123.06607 | Entire home/apt | 145 | 30 | 88 | 2020-10-31 | 0.73 | 1 | 203 |
| 3 | 14267 | EcoLoft Vancouver | 56030 | Peter & Alison | NaN | Kensington-Cedar Cottage | 49.24922 | -123.08139 | Entire home/apt | 140 | 3 | 33 | 2020-02-07 | 0.26 | 1 | 123 |
| 4 | 16254 | Close to PNE/Hastings Park and East Village | 63238 | Jason | NaN | Hastings-Sunrise | 49.27721 | -123.04086 | Entire home/apt | 195 | 3 | 5 | 2019-08-19 | 0.15 | 1 | 289 |
listings_summary.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 16 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 4299 non-null int64 1 name 4299 non-null object 2 host_id 4299 non-null int64 3 host_name 4170 non-null object 4 neighbourhood_group 0 non-null float64 5 neighbourhood 4299 non-null object 6 latitude 4299 non-null float64 7 longitude 4299 non-null float64 8 room_type 4299 non-null object 9 price 4299 non-null int64 10 minimum_nights 4299 non-null int64 11 number_of_reviews 4299 non-null int64 12 last_review 3499 non-null object 13 reviews_per_month 3499 non-null float64 14 calculated_host_listings_count 4299 non-null int64 15 availability_365 4299 non-null int64 dtypes: float64(4), int64(7), object(5) memory usage: 537.5+ KB
neighbourhood_group is all NaN, so will be dropped.
I'm going to drop the name of the listing as well. Although there might be some correlation between the marketing value in a title, I don't plan on doing any text analysis.
host_name also will be dropped, as host_id will suffice for tracking hosts, if necessary.
listings_summary = listings_summary.drop(labels=['neighbourhood_group', 'name', 'host_name'], axis=1)
listings¶I'm going to grab only useful looking features of out this data.
listings.head(1)
| id | listing_url | scrape_id | last_scraped | name | description | neighborhood_overview | picture_url | host_id | host_url | host_name | host_since | host_location | host_about | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_thumbnail_url | host_picture_url | host_neighbourhood | host_listings_count | host_total_listings_count | host_verifications | host_has_profile_pic | host_identity_verified | neighbourhood | neighbourhood_cleansed | neighbourhood_group_cleansed | latitude | longitude | property_type | room_type | accommodates | bathrooms | bathrooms_text | bedrooms | beds | amenities | price | minimum_nights | maximum_nights | minimum_minimum_nights | maximum_minimum_nights | minimum_maximum_nights | maximum_maximum_nights | minimum_nights_avg_ntm | maximum_nights_avg_ntm | calendar_updated | has_availability | availability_30 | availability_60 | availability_90 | availability_365 | calendar_last_scraped | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | license | instant_bookable | calculated_host_listings_count | calculated_host_listings_count_entire_homes | calculated_host_listings_count_private_rooms | calculated_host_listings_count_shared_rooms | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 10080 | https://www.airbnb.com/rooms/10080 | 20210412154228 | 2021-04-13 | D1 - Million Dollar View 2 BR | Stunning two bedroom, two bathroom apartment. ... | NaN | https://a0.muscache.com/pictures/55778229/c2f7... | 30899 | https://www.airbnb.com/users/show/30899 | Rami | 2009-08-10 | Vancouver, British Columbia, Canada | I will be happy to host you. | within an hour | 93% | 87% | f | https://a0.muscache.com/im/pictures/user/55302... | https://a0.muscache.com/im/pictures/user/55302... | Coal Harbour | 49.0 | 49.0 | ['email', 'phone', 'reviews', 'jumio', 'govern... | t | t | NaN | Downtown | NaN | 49.28872 | -123.12046 | Entire condominium | Entire home/apt | 5 | NaN | 2 baths | 2.0 | 2.0 | ["Iron", "Dryer", "Bed linens", "Cooking basic... | $150.00 | 90 | 1124 | 90 | 90 | 1124 | 1124 | 90.0 | 1124.0 | NaN | t | 11 | 41 | 71 | 346 | 2021-04-13 | 16 | 0 | 0 | 2011-11-15 | 2017-02-26 | 93.0 | 9.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 | 18-476608 | f | 40 | 40 | 0 | 0 | 0.14 |
listings.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 74 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 4299 non-null int64 1 listing_url 4299 non-null object 2 scrape_id 4299 non-null int64 3 last_scraped 4299 non-null object 4 name 4299 non-null object 5 description 4272 non-null object 6 neighborhood_overview 3074 non-null object 7 picture_url 4299 non-null object 8 host_id 4299 non-null int64 9 host_url 4299 non-null object 10 host_name 4170 non-null object 11 host_since 4170 non-null object 12 host_location 4168 non-null object 13 host_about 2624 non-null object 14 host_response_time 2991 non-null object 15 host_response_rate 2991 non-null object 16 host_acceptance_rate 3099 non-null object 17 host_is_superhost 4170 non-null object 18 host_thumbnail_url 4170 non-null object 19 host_picture_url 4170 non-null object 20 host_neighbourhood 3793 non-null object 21 host_listings_count 4170 non-null float64 22 host_total_listings_count 4170 non-null float64 23 host_verifications 4299 non-null object 24 host_has_profile_pic 4170 non-null object 25 host_identity_verified 4170 non-null object 26 neighbourhood 3074 non-null object 27 neighbourhood_cleansed 4299 non-null object 28 neighbourhood_group_cleansed 0 non-null float64 29 latitude 4299 non-null float64 30 longitude 4299 non-null float64 31 property_type 4299 non-null object 32 room_type 4299 non-null object 33 accommodates 4299 non-null int64 34 bathrooms 0 non-null float64 35 bathrooms_text 4297 non-null object 36 bedrooms 3987 non-null float64 37 beds 4263 non-null float64 38 amenities 4299 non-null object 39 price 4299 non-null object 40 minimum_nights 4299 non-null int64 41 maximum_nights 4299 non-null int64 42 minimum_minimum_nights 4299 non-null int64 43 maximum_minimum_nights 4299 non-null int64 44 minimum_maximum_nights 4299 non-null int64 45 maximum_maximum_nights 4299 non-null int64 46 minimum_nights_avg_ntm 4299 non-null float64 47 maximum_nights_avg_ntm 4299 non-null float64 48 calendar_updated 0 non-null float64 49 has_availability 4299 non-null object 50 availability_30 4299 non-null int64 51 availability_60 4299 non-null int64 52 availability_90 4299 non-null int64 53 availability_365 4299 non-null int64 54 calendar_last_scraped 4299 non-null object 55 number_of_reviews 4299 non-null int64 56 number_of_reviews_ltm 4299 non-null int64 57 number_of_reviews_l30d 4299 non-null int64 58 first_review 3499 non-null object 59 last_review 3499 non-null object 60 review_scores_rating 3474 non-null float64 61 review_scores_accuracy 3462 non-null float64 62 review_scores_cleanliness 3462 non-null float64 63 review_scores_checkin 3461 non-null float64 64 review_scores_communication 3463 non-null float64 65 review_scores_location 3462 non-null float64 66 review_scores_value 3462 non-null float64 67 license 2983 non-null object 68 instant_bookable 4299 non-null object 69 calculated_host_listings_count 4299 non-null int64 70 calculated_host_listings_count_entire_homes 4299 non-null int64 71 calculated_host_listings_count_private_rooms 4299 non-null int64 72 calculated_host_listings_count_shared_rooms 4299 non-null int64 73 reviews_per_month 3499 non-null float64 dtypes: float64(19), int64(21), object(34) memory usage: 2.4+ MB
After a cursory inspection, a number of features related to the host, the properties of the room, and the reviews seem interesting.
interesting_props_dict = {'host': ['host_since', 'host_response_time', 'host_response_rate', 'host_acceptance_rate', 'host_is_superhost',
'host_has_profile_pic', 'host_identity_verified'],
'room': ['property_type', 'room_type', 'accommodates', 'bathrooms', 'bathrooms_text', 'bedrooms', 'beds',
'amenities', 'instant_bookable'],
'review': ['number_of_reviews', 'number_of_reviews_ltm', 'number_of_reviews_l30d', 'first_review',
'review_scores_rating', 'review_scores_accuracy', 'review_scores_cleanliness', 'review_scores_checkin',
'review_scores_communication', 'review_scores_location', 'review_scores_value']
}
I'll now look through the datasets we have and clean them as necessary, i.e. checking for duplicates, dealing with NaN's, and adjusting datatypes.
For clarity, I'll break the cleaning of listings into three parts related to different groups of features before combining them back together again with listings_summary.
## .copy() prevents SettingWithCopy warnings later on in the pipeline
# Features related to the host from listings.csv
listings_host = listings[interesting_props_dict['host']].copy()
# Features related to the room from listings.csv
listings_room = listings[interesting_props_dict['room']].copy()
# Features related to reviews from listings.csv
listings_review = listings[interesting_props_dict['review']].copy()
First, I'll define some helper functions for converting data types:
def convert_percent_to_float(string_percent):
"""
Converts percentage strings to a float ratio e.g. 95% -> 0.95.
For applying to dataframe elements. If element is NaN, returns back the element.
"""
if pd.isna(string_percent):
return string_percent
else:
return float(string_percent.strip('%'))/100
def convert_tf_to_float(string):
"""
Converts strings of "t" and "f" to 1.0 or 0.0 floats.
For applying to dataframe elements. If element is NaN, returns back the element.
"""
if pd.isna(string):
return string
else:
return {'t':1, 'f':0}[string]
def convert_str_to_datetime(string, format='%Y-%m-%d'):
"""
Converts strings of YYYY-MM-DD format (by default) to datetime objects.
For applying to dataframe elements. If element is NaN, returns back the element.
Uses pd.to_datetime.
"""
return pd.to_datetime(string, format=format)
def col_apply_inplace(df, cols, f, **kwds):
"""
Helper func to apply a func to elements of a column in-place.
df : input dataframe
cols : single string or list of strings of column names
f : the function to apply to the elements of the columns
kwds : keyword arguments to pass onto f
"""
if type(cols) == str:
df.loc[:,cols] = df.loc[:,cols].apply(f, **kwds)
elif type(cols) == list:
for col in cols:
df.loc[:,col] = df.loc[:,col].apply(f, **kwds)
else:
raise ValueError('cols is not a single column name string or a list of column name strings')
listings_summary¶For listings_summary, last_review needs to be converted to datetimes.
listings_summary.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 13 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 4299 non-null int64 1 host_id 4299 non-null int64 2 neighbourhood 4299 non-null object 3 latitude 4299 non-null float64 4 longitude 4299 non-null float64 5 room_type 4299 non-null object 6 price 4299 non-null int64 7 minimum_nights 4299 non-null int64 8 number_of_reviews 4299 non-null int64 9 last_review 3499 non-null object 10 reviews_per_month 3499 non-null float64 11 calculated_host_listings_count 4299 non-null int64 12 availability_365 4299 non-null int64 dtypes: float64(3), int64(7), object(3) memory usage: 436.7+ KB
# Convert to datetime
col_apply_inplace(listings_summary, 'last_review', convert_str_to_datetime)
listings_host¶listings_host is an all string dataframe
listings_host.head()
| host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | |
|---|---|---|---|---|---|---|---|
| 0 | 2009-08-10 | within an hour | 93% | 87% | f | t | t |
| 1 | 2009-11-07 | within a day | 100% | 57% | t | f | t |
| 2 | 2009-11-08 | within an hour | 100% | 78% | t | t | t |
| 3 | 2009-11-20 | within a few hours | 100% | NaN | f | t | t |
| 4 | 2009-12-15 | NaN | NaN | NaN | f | t | t |
listings_host.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 host_since 4170 non-null object 1 host_response_time 2991 non-null object 2 host_response_rate 2991 non-null object 3 host_acceptance_rate 3099 non-null object 4 host_is_superhost 4170 non-null object 5 host_has_profile_pic 4170 non-null object 6 host_identity_verified 4170 non-null object dtypes: object(7) memory usage: 235.2+ KB
I'll need to convert t/f columns to 1.0 and 0.0 representing true and false, convert dates to datetimes, and percentages to ratios.
col_apply_inplace(listings_host, 'host_since', convert_str_to_datetime)
col_apply_inplace(listings_host,
['host_response_rate', 'host_acceptance_rate'],
convert_percent_to_float)
col_apply_inplace(listings_host,
['host_is_superhost','host_has_profile_pic','host_identity_verified'],
convert_tf_to_float)
listings_host.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 host_since 4170 non-null datetime64[ns] 1 host_response_time 2991 non-null object 2 host_response_rate 2991 non-null float64 3 host_acceptance_rate 3099 non-null float64 4 host_is_superhost 4170 non-null float64 5 host_has_profile_pic 4170 non-null float64 6 host_identity_verified 4170 non-null float64 dtypes: datetime64[ns](1), float64(5), object(1) memory usage: 235.2+ KB
listings_host.head()
| host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | |
|---|---|---|---|---|---|---|---|
| 0 | 2009-08-10 | within an hour | 0.93 | 0.87 | 0.0 | 1.0 | 1.0 |
| 1 | 2009-11-07 | within a day | 1.00 | 0.57 | 1.0 | 0.0 | 1.0 |
| 2 | 2009-11-08 | within an hour | 1.00 | 0.78 | 1.0 | 1.0 | 1.0 |
| 3 | 2009-11-20 | within a few hours | 1.00 | NaN | 0.0 | 1.0 | 1.0 |
| 4 | 2009-12-15 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 |
listings_room¶listings_room has two columns of note. bathrooms_text are host-entered strings describing their bathroom situation, whereas amenities is are json formatted collections of various amenities the property has.
listings_room.head()
| property_type | room_type | accommodates | bathrooms | bathrooms_text | bedrooms | beds | amenities | instant_bookable | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | Entire condominium | Entire home/apt | 5 | NaN | 2 baths | 2.0 | 2.0 | ["Iron", "Dryer", "Bed linens", "Cooking basic... | f |
| 1 | Entire condominium | Entire home/apt | 2 | NaN | 1 bath | 1.0 | 1.0 | ["Iron", "Dryer", "Bed linens", "Cooking basic... | f |
| 2 | Entire apartment | Entire home/apt | 2 | NaN | 1 bath | 1.0 | 1.0 | ["Iron", "Outdoor dining area", "Ethernet conn... | f |
| 3 | Entire house | Entire home/apt | 4 | NaN | 1 bath | 1.0 | 2.0 | ["Iron", "Dryer", "Cooking basics", "Hot water... | t |
| 4 | Entire guest suite | Entire home/apt | 4 | NaN | 1 bath | 2.0 | 3.0 | ["Iron", "Dryer", "Bed linens", "Cooking basic... | t |
listings_room.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 9 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 property_type 4299 non-null object 1 room_type 4299 non-null object 2 accommodates 4299 non-null int64 3 bathrooms 0 non-null float64 4 bathrooms_text 4297 non-null object 5 bedrooms 3987 non-null float64 6 beds 4263 non-null float64 7 amenities 4299 non-null object 8 instant_bookable 4299 non-null object dtypes: float64(3), int64(1), object(5) memory usage: 302.4+ KB
Inspecting the amenities, each property has a combination of many amenities. These aren't very standardized.
amen = listings_room['amenities'].copy()
amen.value_counts()
["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven"] 21 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 14 ["Heating", "Essentials", "Kitchen", "Private entrance", "Stove", "Microwave", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Freezer", "TV", "Hot water", "Refrigerator", "Hangers", "Dishwasher", "Smoke alarm", "Oven", "Air conditioning"] 11 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Oven"] 10 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 8 ["Dryer", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 8 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 7 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Smoke alarm", "Air conditioning", "Hair dryer"] 6 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV"] 6 ["Iron", "Dryer", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 6 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 5 ["Heating", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Free parking on premises", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 4 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 4 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 4 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 4 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 4 ["Heating", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Smoke alarm"] 3 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 3 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 3 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 3 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 3 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 3 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven", "Air conditioning"] 3 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV"] 3 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm"] 3 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 3 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Lock on bedroom door"] 3 ["Heating", "Essentials", "Dryer", "Washer", "Wifi", "Bed linens", "Free parking on premises", "Long term stays allowed", "Hangers", "Host greets you", "Air conditioning"] 3 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 3 ["Kitchen", "Heating", "Dryer", "Wifi", "Washer", "Long term stays allowed"] 3 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 3 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 2 ["Heating", "Essentials", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Keypad", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Hot tub", "Dryer", "First aid kit", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 2 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Smoke alarm", "Patio or balcony"] 2 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 2 ["Long term stays allowed"] 2 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Dryer \u2013 In building", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Washer \u2013\u00a0In building", "Lock on bedroom door", "Host greets you"] 2 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 2 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 2 ["Iron", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 2 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 2 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Smoke alarm"] 2 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 2 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Elevator", "Free parking on premises", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Kitchen", "Fire extinguisher", "TV"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Smoke alarm"] 2 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 2 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 2 ["Heating", "Kitchen", "Stove", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Smoke alarm", "Oven"] 2 ["Heating", "Iron", "Building staff", "Wifi", "Dedicated workspace", "Long term stays allowed", "Cooking basics", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "TV", "Free parking on premises", "Long term stays allowed", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 2 ["Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Fire extinguisher", "TV", "Full kitchen", "Dishwasher", "Bedroom comforts", "Hair dryer", "Paid parking off premises"] 2 ["Iron", "Hot tub", "Dryer", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Lockbox", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Smoke alarm", "Oven"] 2 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 2 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 2 ["Heating", "Kitchen", "Stove", "Microwave", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven"] 2 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 2 ["Heating", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you"] 2 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Lock on bedroom door", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "TV with standard cable", "Dedicated workspace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Fire extinguisher", "Hot tub", "Cable TV"] 2 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Smoke alarm", "Air conditioning"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 2 ["Iron", "Ethernet connection", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Pour-over coffee"] 2 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Wifi", "Dedicated workspace", "Long term stays allowed", "Elevator", "Free parking on premises", "TV", "Indoor fireplace", "Lock on bedroom door", "Pool", "Breakfast", "Smoke alarm"] 2 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 2 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 2 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hangers", "Smoke alarm", "Paid parking off premises"] 2 ["Kitchen", "Body soap", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Cooking basics", "Lock on bedroom door", "Smoke alarm"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 2 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 2 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 2 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "TV"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 2 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hangers", "Paid parking off premises"] 2 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 2 ["Heating", "Kitchen", "Stove", "Microwave", "Wifi", "Long term stays allowed", "Dryer \u2013\u00a0In unit", "TV", "Hot water", "Hangers", "Washer \u2013\u00a0In unit", "Smoke alarm", "Oven"] 2 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 2 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 2 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 2 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "Hangers", "Hair dryer"] 2 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Oven"] 2 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Ethernet connection", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "Shower gel", "Children\u2019s dinnerware", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Kitchen", "Essentials", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Game console", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "First aid kit", "Indoor fireplace", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Sound system", "Dishwasher", "Fireplace guards", "Ceiling fan"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Waterfront", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "TV with standard cable", "Wifi", "Long term stays allowed", "Cable TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Pocket wifi", "Hangers", "Free street parking", "Smoke alarm", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Wifi", "Elevator", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Security cameras on property", "Hot water", "Portable fans", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Full kitchen", "Indoor fireplace", "Pets allowed", "Shared hot tub", "Pool", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Paid parking off premises", "Cable TV", "Wifi \u2013 150 Mbps", "Gym", "Cleaning products", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Free washer\u2013In unit", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Microwave", "Hot water", "Kitchen", "Stove", "Dryer", "TV", "Long term stays allowed", "Heating", "Air conditioning", "Wifi", "Smoke alarm", "Washer", "Oven"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Essentials", "Kitchen", "Free parking on premises", "Dryer", "TV", "Hangers", "Private entrance", "Fire extinguisher", "Long term stays allowed", "Heating", "Wifi", "Iron", "Indoor fireplace", "Smoke alarm", "Washer"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Children\u2019s books and toys", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Host greets you", "High chair"] 1 ["EV charger", "Iron", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Toaster", "Safe", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Central heating", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Freezer", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Children\u2019s books and toys for ages 0-2 years old and 2-5 years old", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Free dryer\u2013In unit", "Board games", "Cleaning products", "Carbon monoxide alarm", "Conditioner", "Dining table", "Wifi \u2013 300 Mbps", "Security cameras on property", "Clothing storage: wardrobe and closet", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Hot water kettle", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "55\" HDTV with Netflix", "Shower gel", "Children\u2019s dinnerware", "Rice maker", "Wine glasses", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Carbon monoxide alarm", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Hair dryer", "Dryer", "First aid kit", "Free parking on premises", "Dedicated workspace", "Indoor fireplace", "Long term stays allowed", "Iron", "Smoke alarm", "TV", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Hot tub", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Fenced garden or backyard", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Clothing storage: wardrobe", "Hair dryer", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Free parking on premises", "Hair dryer", "Carbon monoxide alarm", "Fire extinguisher", "TV", "Full kitchen", "Dishwasher", "Bedroom comforts", "Pets allowed", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Shampoo", "Microwave", "Dryer", "Washer", "Wifi", "Free parking on premises", "Cooking basics", "Long term stays allowed", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Board games", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Outdoor furniture", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Portable heater", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Luggage dropoff allowed", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Keypad", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Hot tub", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Paid parking off premises", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you"] 1 ["Bed linens", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Paid parking off premises", "Backyard", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Bikes", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Fire pit", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Beach essentials", "Shower gel", "TV", "Children\u2019s dinnerware", "Sound system", "Rice maker", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Shared garden or backyard", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "TV with Netflix", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Cleaning products", "Wifi", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Dining table", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Wifi \u2013 75 Mbps", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Dedicated workspace: desk and office chair", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Gym", "Cleaning products", "Washer", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Clothing storage: wardrobe, closet, and walk-in closet", "Toaster", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Microwave", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Refrigerator", "Hangers", "Smoke alarm", "Oven", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "TV", "Security cameras on property", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Baking sheet", "Extra pillows and blankets", "Bathtub", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "Host greets you", "Dedicated workspace", "Free street parking", "Cooking basics", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Lockbox", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Long term stays allowed", "Portable fans", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Building staff", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Long term stays allowed", "Free parking on premises", "Hot water", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Washer", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Essentials", "Private entrance", "Coffee maker", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Keypad", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Smoke alarm", "Washer", "Elevator", "Free parking on premises", "Air conditioning", "Gym", "Heating", "Shampoo", "Carbon monoxide alarm", "Long term stays allowed", "Wifi", "Kitchen", "Dryer", "Fire extinguisher", "Essentials", "TV with standard cable", "Cable TV"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Children\u2019s books and toys", "High chair", "Hair dryer", "Host greets you", "Dryer", "First aid kit", "Dedicated workspace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Hot water", "Smoke alarm", "TV", "Gym", "Shampoo", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "Dishwasher", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "Pool", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Hair dryer", "Dryer", "Backyard", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Hot water", "Smoke alarm", "Cleaning before checkout", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Mini fridge", "Wifi"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Ethernet connection", "Dryer", "Washer", "Wifi", "Bed linens", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Hair dryer"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Portable fans", "Refrigerator", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "HDTV with Netflix, standard cable", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Organic Carina products from the Soap Factory in Vancouver body soap", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Paid parking off premises"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Induction stove"] 1 ["Iron", "Bed linens", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Bikes", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Mosquito net", "Fire pit", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Private sauna", "Shower gel", "TV", "Sound system", "Rice maker", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Dishes and silverware", "Microwave", "Wifi", "Dedicated workspace", "TV with standard cable", "Free parking on premises", "Cooking basics", "Long term stays allowed", "Hot water", "Refrigerator", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Cable TV"] 1 ["Kitchen", "Private entrance", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Building staff", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "GE Profile stainless steel oven", "Cable TV", "Backyard", "Board games", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Long term stays allowed", "Hot water", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "KEF sound system with Bluetooth and aux", "Samsung refrigerator", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Game console", "Hangers", "Pool", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Naturally Made conditioner", "Kitchen", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Dishwasher", "Naturally Made body soap", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Essentials", "Stove", "Shampoo", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Wifi \u2013 1000 Mbps", "Free washer\u2013In building", "Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free dryer\u2013In building", "Free street parking", "Google Nest Mini Bluetooth sound system", "Air conditioning", "Backyard", "Cleaning products", "Carbon monoxide alarm", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Wine glasses", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Lockbox", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Self check-in", "TV", "Free street parking", "Bedroom comforts", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Outlet covers", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Lockbox", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "Children\u2019s books and toys", "High chair", "Hair dryer", "Baby monitor", "Children\u2019s dinnerware", "Dryer", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Game console", "Fireplace guards", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Cable TV"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 1 ["Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Oven", "Air conditioning"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Portable heater", "Wifi \u2013 100 Mbps", "Outdoor dining area", "Central heating", "Shared garden or backyard", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Tresemme or Dove shampoo", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Tresemme or Dove conditioner", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Free dryer\u2013In unit", "Board games", "Single level home", "Cleaning products", "Stainless steel oven", "Washer", "HDTV with Roku", "Carbon monoxide alarm", "Dining table", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Smoke alarm", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Children\u2019s books and toys for ages 2-5 years old, 5-10 years old, and 10+ years old", "Coffee maker", "Electric stove", "Private entrance", "Clothing storage: dresser and wardrobe", "Outdoor furniture", "Shower gel", "Dishwasher", "pearl and dove in bathroom and President's choice hand soap pump. body soap", "Rice maker", "Dedicated workspace: table, office chair, desk, and monitor", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Clothing storage: wardrobe and dresser", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Shared fenced garden or backyard", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "TV with Amazon Prime Video, Netflix"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Fireplace guards", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Lake access", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Kitchen", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Dryer", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Oven", "Heating", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Elevator", "Hair dryer", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Indoor fireplace", "Bedroom comforts", "Room-darkening shades", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Bathtub", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Piano", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Alaffia - Ethical Trade, Handcrafted & Biodegradable shampoo", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Keypad", "Alaffia - Ethical Trade, Handcrafted & Biodegradable conditioner", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Beach essentials", "Shower gel", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Dedicated workspace", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Building staff", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Pool", "Hair dryer", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Crib", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Pool", "Smoke alarm", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Paid parking on premises", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Bathtub", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Window guards", "Bread maker", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Table corner guards", "Fire extinguisher", "Coffee maker", "Shower gel", "Children\u2019s dinnerware", "Pocket wifi", "Lock on bedroom door", "Fireplace guards", "Rice maker", "Dishwasher", "Wine glasses", "Pour-over coffee", "Changing table"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Baby bath", "Smoke alarm", "Crib", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Toaster Oven oven", "Long term stays allowed", "Portable fans", "Free street parking", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Toaster", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Mini Fridge refrigerator", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Wine glasses", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Barbecue utensils", "Cooking basics", "Hot water", "Essentials", "Stove", "Shampoo", "Microwave", "Free street parking", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Building staff", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Free street parking", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Rice maker", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Electric stove", "Laundromat nearby", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Pocket wifi", "Dishwasher", "Fireplace guards", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Body soap", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Cooking basics", "Long term stays allowed", "Shower gel", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "Dishwasher", "Ceiling fan"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Free street parking", "Lockbox", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Keypad", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Bed linens", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Mini fridge", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Building staff", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Free street parking", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Hair dryer", "Smart lock", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Wifi", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Safe", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Nespresso machine", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Shampoo", "Microwave", "Dishes and silverware", "Wifi", "Bed linens", "Cooking basics", "Elevator", "TV", "Hot water", "Refrigerator", "Hangers", "Patio or balcony", "Oven", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Cleaning before checkout", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Toaster", "Safe", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Window guards", "Extra pillows and blankets", "Bathtub", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Waterfront", "Hair dryer", "Host greets you", "Dryer", "TV with standard cable", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Room-darkening shades", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "TV", "Dishwasher", "Stainless steel stove", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Stainless steel gas stove", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Microwave", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Essentials", "Dryer", "Wifi", "Long term stays allowed", "Free parking on premises", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Nespresso machine", "Washer", "Wifi", "Toaster", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Pour-over coffee"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Kitchen", "Essentials", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Paid parking off premises", "Backyard", "Cleaning before checkout", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Coffee maker", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Backyard", "Long term stays allowed", "Keypad", "Refrigerator", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "TV with standard cable", "Outlet covers", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Elevator", "TV", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Smoke alarm", "Free parking on premises", "Washer", "TV", "Bedroom comforts", "Free street parking", "Coffee maker", "Room-darkening shades", "Bathroom essentials", "Carbon monoxide alarm", "Hair dryer", "Wifi", "Iron", "Dryer", "Fire extinguisher", "Heating", "Backyard"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Backyard"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Pour-over coffee", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Backyard", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Kitchen", "Body soap", "Shampoo", "Hot tub", "Washer", "Wifi", "Carbon monoxide alarm", "Bed linens", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Baby safety gates", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Free street parking", "BBQ grill", "Cable TV", "Backyard", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Fireplace guards", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot water", "Stove", "Cooking basics", "Hair dryer", "Hangers", "First aid kit", "Coffee maker", "Dishwasher", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Long term stays allowed", "Heating", "Indoor fireplace", "Oven", "Kitchen", "Free parking on premises", "Shampoo", "BBQ grill", "Patio or balcony", "Dedicated workspace", "Luggage dropoff allowed", "Refrigerator", "Fire extinguisher", "Microwave", "Essentials", "Dryer", "Keypad", "Free street parking", "Wifi", "Dishes and silverware", "Washer"] 1 ["Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Free street parking", "Smoke alarm"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Sauna", "Building staff", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Essentials", "Dryer", "Washer", "Carbon monoxide alarm", "Hair dryer", "Wifi", "Free parking on premises", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Air conditioning", "Gym", "Washer", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Lock on bedroom door"] 1 ["Dryer", "Cooking basics", "Keurig coffee machine", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Stove", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Sound system", "Lock on bedroom door", "Rice maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Shared outdoor heated pool", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Dining table", "Toaster", "Luggage dropoff allowed", "Safe", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Shared sauna", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Long term stays allowed", "TV", "Pool", "Smoke alarm", "Cable TV"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Baking sheet", "Carbon monoxide alarm", "Pantene conditioner", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "EV charger", "Bose sound system with aux", "Washer", "Elevator", "Keurig coffee machine", "Air conditioning", "Coffee maker", "Pool", "Hair dryer", "Dryer", "First aid kit", "TV with standard cable", "Dishwasher", "Dedicated workspace", "Freezer", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Gym", "Microwave", "Shampoo", "Olay body soap", "Dishes and silverware", "Mini fridge", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Free residential garage on premises \u2013 1 space", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Fire extinguisher", "Coffee maker", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Patio or balcony", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Cleaning products", "Wine glasses", "Stove", "Hangers", "Essentials", "Heating", "Dining table", "Paid parking on premises", "Bed linens", "Washer", "Elevator", "Hot water kettle", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Nespresso machine", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Dishes and silverware", "Toaster", "Wifi", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Bose SoundLink Mini Bluetooth sound system", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "58\" HDTV with Netflix, standard cable", "Nespresso machine", "Stainless steel oven", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Pool", "Waterfront", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Microwave", "Dishes and silverware", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Refrigerator", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Hot water", "Hangers", "Breakfast", "Smoke alarm", "Oven", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Host greets you"] 1 ["Iron", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Baby bath", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "TV", "Hangers", "Smoke alarm"] 1 ["Dryer", "Elevator", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Ski-in/Ski-out", "TV", "Host greets you"] 1 ["Iron", "Bathroom essentials", "High chair", "Dishwasher", "Pack \u2019n Play/travel crib", "Smoke alarm", "Paid parking off premises", "Bedroom comforts", "Air conditioning", "Coffee maker", "Fire extinguisher", "Heating", "Hair dryer", "Self check-in", "Wifi", "Washer", "Crib", "TV", "Free street parking", "Carbon monoxide alarm", "Dryer", "Full kitchen", "Room-darkening shades", "Free parking on premises", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Central air conditioning", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven"] 1 ["Iron", "Bathroom essentials", "Pool", "Dishwasher", "Smoke alarm", "Bedroom comforts", "Coffee maker", "Heating", "Elevator", "Indoor fireplace", "Gym", "Hair dryer", "Self check-in", "Wifi", "Washer", "TV", "Carbon monoxide alarm", "Dryer", "Kitchen", "Room-darkening shades", "Free parking on premises", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Keurig coffee machine", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher"] 1 ["Kitchen", "Essentials", "Shampoo", "Hot tub", "Washer", "Wifi", "TV", "Breakfast", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Wifi", "Bed linens", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Keypad", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishes and silverware", "Wifi", "Long term stays allowed", "Elevator", "Free parking on premises", "Refrigerator", "First aid kit", "Free street parking", "Smoke alarm"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Refrigerator", "First aid kit", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Lock on bedroom door"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Paid parking garage on premises \u2013 CAD5 per day, 1 space", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Heating", "Kitchen", "Oven", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Dishwasher", "Smoke alarm", "Bathtub"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Microwave", "Coffee maker", "Dryer", "Washer", "Wifi", "Dishes and silverware", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Ethernet connection", "Bed linens", "Hot water", "Mini fridge", "Essentials", "Clothing storage", "Shampoo", "Microwave", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Free dryer\u2013In unit", "Cleaning products", "Wifi", "Conditioner", "Free parking on premises", "Security cameras on property", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "Lock on bedroom door"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Private entrance", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Building staff", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Game console", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Rice maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["EV charger", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Waterfront", "Paid parking off premises", "Gym", "Washer", "Wifi", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Stove", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Hot water", "First aid kit", "Hangers", "Refrigerator", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "Dedicated workspace", "Free street parking", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Cleaning before checkout", "Microwave", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "TV", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Microwave", "Private entrance", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Kitchen", "Heating", "Dishes and silverware", "Dryer", "Wifi", "Washer", "Long term stays allowed", "Free street parking"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Keypad", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Private entrance", "Shampoo", "Dryer", "Wifi", "Dedicated workspace", "Free parking on premises", "Cooking basics", "Long term stays allowed", "TV", "Security cameras on property", "Free washer\u2013In unit", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Full kitchen", "Pets allowed", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Bedroom comforts", "Smoke alarm", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Heating", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Patio or balcony", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Pocket wifi", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Board games", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "Children\u2019s dinnerware", "Sound system", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet", "High chair"] 1 ["Heating", "Essentials", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Security cameras on property", "Lockbox", "Hangers", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Kitchen", "Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Self check-in", "TV", "Free street parking", "Bedroom comforts", "Hair dryer", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Hair dryer", "Free parking on premises", "Long term stays allowed", "Air conditioning"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Fireplace guards", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Board games", "Nespresso machine", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Pool", "Smoke alarm"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Keurig coffee machine", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Stainless steel gas stove", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "wow refrigerator", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Hot water kettle", "wow electric stove", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Backyard", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Air conditioning", "Hair dryer", "40\" TV with Netflix", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Fire extinguisher", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Gas stove", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV with Netflix, standard cable", "Shower gel", "Pour-over coffee", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Bed linens", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Smart lock", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "LG refrigerator", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "Shower gel", "TV"] 1 ["Iron", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Building staff", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Hot water", "Hangers", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Ceiling fan", "Shower gel", "TV", "Sound system", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Portable air conditioning", "Dishes and silverware", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Pool table", "Portable fans", "Refrigerator", "Hangers", "32\" HDTV with Chromecast", "Pool", "Clothing storage: walk-in closet, closet, and dresser", "Hair dryer", "Paid parking off premises", "Backyard", "Cleaning before checkout", "Gym", "Cleaning products", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Single level home", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ping pong table", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Refrigerator", "Hangers", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Cleaning products", "Free carport on premises \u2013 2 spaces", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Keypad", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Kitchen", "Body soap", "Shampoo", "Hot tub", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Cooking basics", "Free parking on premises", "TV", "Hot water", "Lock on bedroom door", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises \u2013 2 spaces", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hangers", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cleaning before checkout", "Backyard", "Washer", "Wifi", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV"] 1 ["Essentials", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Luggage dropoff allowed", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Paid parking lot on premises", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets", "Focal sound system"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Dishes and silverware", "Wifi", "Private entrance", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Piano", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dishes and silverware", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Backyard", "Washer", "Wifi", "Free parking on premises", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Paid parking off premises", "Nespresso machine", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Security cameras on property", "Essentials", "Hot water", "Kitchen", "Free parking on premises", "Shampoo", "Dryer", "TV", "Hangers", "Long term stays allowed", "Heating", "Wifi", "Indoor fireplace", "Smoke alarm", "Washer", "Carbon monoxide alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Elevator", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Fireplace guards", "Changing table", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Smart lock", "Backyard", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot water", "Essentials", "Kitchen", "Elevator", "Shampoo", "Dryer", "Free parking on premises", "Hair dryer", "Hangers", "TV", "Dedicated workspace", "Long term stays allowed", "Heating", "Wifi", "Smoke alarm", "Washer"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Shampoo", "Ethernet connection", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Kitchen", "Private entrance", "Wifi", "Long term stays allowed", "TV", "Lock on bedroom door", "Smoke alarm"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Fire extinguisher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Keurig coffee machine", "Paid parking on premises", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Elevator", "Hot water", "Hangers", "Smoke alarm"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Dryer", "Bed linens", "Elevator", "Hot water", "Freezer", "Essentials", "Clothing storage", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Rice maker"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Bedroom comforts", "Bathroom essentials", "Carbon monoxide alarm", "Bathtub", "Heating", "Washer", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Children\u2019s dinnerware", "Dryer", "Dishwasher", "Backyard", "Free parking on premises", "Free street parking", "Indoor fireplace", "Iron", "Pack \u2019n Play/travel crib", "Smoke alarm", "TV", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Free washer\u2013In building", "Iron", "Outdoor dining area", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "48\" HDTV with Netflix", "Clothing storage: closet and dresser", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Free dryer\u2013In building", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Dryer", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Pool", "Breakfast", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Paid parking garage off premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Air conditioning", "Paid parking off premises", "Cable TV", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Portable heater", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Paid parking lot on premises \u2013 1 space", "Dishwasher", "Rice maker", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Bed linens", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Shampoo", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Nespresso machine", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Heating", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Shower gel", "TV", "Dishwasher"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Building staff", "Washer", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Pool", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Private entrance", "Lockbox", "Iron", "Backyard", "Bed linens", "Smoke alarm", "Hangers", "Dedicated workspace", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "First aid kit", "Hair dryer", "Wifi", "Hot water", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Free street parking", "Carbon monoxide alarm", "Dishes and silverware", "Free parking on premises"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Piano", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "Dishwasher", "Changing table"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Microwave", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Hot water", "Refrigerator", "Hangers", "Beachfront", "Free street parking", "Smoke alarm", "Host greets you", "Oven", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Pool", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Game console", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Shower gel", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Kevin Murphy conditioner", "Bed linens", "Cooking basics", "Vintage 70's record player, receiver, and Danish cabinet speakers. Also, a slightly newer, but still retro, cassette player. sound system with Bluetooth and aux", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Paid street parking off premises", "Portable fans", "Refrigerator", "Hangers", "Extra pillows and blankets", "Gas stove", "Hair dryer", "Record player", "Backyard", "Wifi", "Dedicated workspace", "Dr Bronners body soap", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Window AC unit", "Fire extinguisher", "Laundromat nearby", "Private entrance", "Pour-over coffee", "Host greets you", "Ceiling fan", "Kevin Murphy shampoo"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Hot water", "Hangers", "Lock on bedroom door", "Patio or balcony", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Hot tub", "Dryer", "Elevator", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Stove", "Microwave", "Wifi", "Long term stays allowed", "Free parking on premises", "Refrigerator", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Bluetooth sound system", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Record player", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Electric stove", "Shower gel", "HDTV with Netflix, Amazon Prime Video", "Lock on bedroom door", "Pour-over coffee", "Host greets you", "Bathtub", "Ceiling fan"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning"] 1 ["Private entrance", "Keypad", "Iron", "Shampoo", "Backyard", "Bed linens", "Smoke alarm", "Hangers", "Dedicated workspace", "Air conditioning", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "Cable TV", "Hair dryer", "Wifi", "Washer", "Hot water", "TV with standard cable", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Free street parking", "Carbon monoxide alarm", "Lock on bedroom door", "Dryer", "Dishes and silverware"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Dishwasher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Microwave", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Refrigerator", "Free street parking", "Smoke alarm", "Host greets you", "Extra pillows and blankets", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Host greets you", "Extra pillows and blankets", "Hair dryer"] 1 ["Baking sheet", "Cleaning products", "Extra pillows and blankets", "Central heating", "Outlet covers", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Stove", "Lockbox", "Hangers", "Essentials", "Dining table", "Bed linens", "Clothing storage", "Children\u2019s books and toys", "Hot water kettle", "Coffee maker", "Keurig coffee machine", "High chair", "Hair dryer", "Children\u2019s dinnerware", "Washer \u2013\u00a0In building", "First aid kit", "Backyard", "Board games", "Dedicated workspace", "Dryer \u2013 In building", "Free street parking", "Portable fans", "Freezer", "Body soap", "Babysitter recommendations", "Cooking basics", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "HDTV with Netflix, premium cable, HBO Max, standard cable", "Hot water", "Smoke alarm", "Private entrance", "Shower gel", "Cleaning before checkout", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Toaster", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Baby bath", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Long term stays allowed", "First aid kit", "Smoke alarm", "Air conditioning", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Baby safety gates", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Changing table", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Hot tub", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Outdoor shower", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Sound system", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Free driveway parking on premises \u2013 1 space", "Portable air conditioning", "Dishes and silverware", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Refrigerator", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Bed linens", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Air conditioning", "Extra pillows and blankets", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Changing table"] 1 ["Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Free parking on premises", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Shower gel", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Oven", "Cable TV"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Backyard", "Single level home", "Cleaning products", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "Children\u2019s dinnerware", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Wifi", "Outlet covers", "Carbon monoxide alarm", "Self check-in", "TV", "Kitchenette", "Free street parking", "Bedroom comforts", "Bathtub", "Hair dryer", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Hair dryer", "Self check-in", "Carbon monoxide alarm", "TV", "Bathtub", "Dishwasher", "Free street parking", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Air conditioning"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Body soap", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Laundromat nearby", "Fire extinguisher", "Private entrance", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Hot water", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Dedicated workspace: desk, office chair, and table", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "HDTV with Chromecast, standard cable", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Backyard", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Children\u2019s books and toys for ages 0-2 years old, 2-5 years old, 5-10 years old, and 10+ years old", "Fire extinguisher", "Coffee maker", "Electric stove", "Babysitter recommendations", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Wine glasses", "Pour-over coffee", "Host greets you", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Backyard", "Google mini at your service in the suite for weather updates, restaurant recommendations, latest news, etc. sound system", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Cooking basics", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Luggage dropoff allowed", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV"] 1 ["Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Sound system", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Hair dryer"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "TV", "Indoor fireplace", "Free street parking", "Bedroom comforts", "Room-darkening shades", "Hair dryer", "Backyard"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Kitchen", "Essentials", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Elevator", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Bidet", "Laundromat nearby", "Cleaning products", "Extra pillows and blankets", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Dining table", "Bed linens", "Washer", "Beach essentials", "Hot water kettle", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Portable fans", "Body soap", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Rice maker", "Ceiling fan", "Outdoor dining area", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Conditioner", "Mini fridge", "Dishes and silverware", "Wifi", "Toaster", "Patio or balcony", "Kitchen", "Keypad", "Fire extinguisher", "Outdoor furniture", "Cable TV"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Kitchen", "Body soap", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Bed linens", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Security cameras on property", "Hot water", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Kitchen", "Essentials", "Wifi", "Dedicated workspace", "Elevator", "TV", "Hangers", "Smoke alarm", "Host greets you"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Gas stove", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Microwave", "Dishes and silverware", "Wifi", "Carbon monoxide alarm", "Shower gel", "TV", "Hot water", "Security cameras on property", "Hangers", "Refrigerator", "Free street parking", "Smoke alarm", "Hot water kettle", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Bathtub"] 1 ["Iron", "Clothing storage: dresser, wardrobe, and closet", "Dryer", "Mint, all natural, from The Soap Dispensary shampoo", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Mint, all natural, from The Soap Dispensary body soap", "Gym", "Washer", "Wifi", "Free parking on premises", "Mint, all natural, from The Soap Dispensary conditioner", "Toaster", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dedicated workspace: table", "Shower gel", "Dishwasher", "Bathtub", "Ceiling fan", "TV with Roku"] 1 ["Heating", "Essentials", "Laundromat nearby", "Private entrance", "Private fenced garden or backyard", "Ethernet connection", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Keypad", "Hot water", "Portable fans", "Hangers", "Free street parking", "Smoke alarm", "Bathtub", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Building staff", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Waterfront", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "Washer", "BBQ grill", "Elevator", "Children\u2019s books and toys", "Air conditioning", "Coffee maker", "High chair", "Pool", "Hair dryer", "Smart lock", "Dryer", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Room-darkening shades", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "TV", "Shower gel", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Keurig coffee machine", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Waterfront", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Stainless steel gas stove", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "Dishwasher", "gas stainless steel oven", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "TV with standard cable", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Backyard", "Smart lock", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Bathtub"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Self check-in", "Carbon monoxide alarm", "TV", "Full kitchen", "Indoor fireplace", "Bedroom comforts", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Board games", "Washer", "Wifi", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Baking sheet", "Outlet covers", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "BBQ grill", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Baby monitor", "Children\u2019s dinnerware", "Smart lock", "Dryer", "First aid kit", "Dishwasher", "Crib", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Fireplace guards", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Baby bath", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Hot tub", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Cleaning before checkout", "Gym", "Wifi", "Dedicated workspace", "Free parking on premises", "Dining table", "Shared pool", "Toaster", "Beachfront", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Bathtub"] 1 ["Free washer\u2013In building", "Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "40\" HDTV with Amazon Prime Video, Netflix", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Radiant heating", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Security cameras on property", "Toaster", "LG refrigerator", "Shared fenced garden or backyard", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Clothing storage: walk-in closet", "Outdoor furniture", "Shower gel", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Cooking basics", "Long term stays allowed", "TV", "Hangers", "Pool", "Air conditioning"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Lockbox", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Outdoor furniture", "Dishwasher", "Lock on bedroom door", "Rice maker", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "First aid kit", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Patio or balcony", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Washer", "Dryer", "Wifi", "Free parking on premises", "Self check-in", "Hair dryer", "Carbon monoxide alarm", "TV", "Dishwasher", "Free street parking", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Air conditioning"] 1 ["Dryer", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Bed linens", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Dryer \u2013 In building", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "Free driveway parking on premises", "Washer \u2013\u00a0In building", "TV", "Sound system", "Lock on bedroom door", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Hot water", "First aid kit", "Essentials", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Smart lock", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Bathtub", "Hot water", "Extra pillows and blankets", "Stove", "Cooking basics", "Laundromat nearby", "Hangers", "Coffee maker", "Dishwasher", "Drying rack for clothing", "Iron", "Smoke alarm", "Nespresso machine", "Ethernet connection", "Long term stays allowed", "Heating", "Body soap", "Oven", "Security cameras on property", "Wine glasses", "Kitchen", "Bidet", "TV", "Dedicated workspace", "Clothing storage", "Cleaning products", "Refrigerator", "Microwave", "Essentials", "Cable TV", "Dryer", "Freezer", "Hot water kettle", "Toaster", "Portable fans", "Bed linens", "Wifi", "Dishes and silverware", "Washer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Breakfast", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Free street parking", "Smoke alarm", "Host greets you", "Patio or balcony"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Gas stove", "BBQ grill", "HDTV with Apple TV, Netflix, HBO Max, Amazon Prime Video, standard cable", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Pour-over coffee"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Paid washer\u2013In building", "Hangers", "Air conditioning", "Hair dryer", "Wifi", "Conditioner", "Dining table", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Paid dryer\u2013In building", "Clothing storage: closet", "Heating", "Kitchen", "Private entrance", "Dedicated workspace: table", "Dishwasher", "55\" HDTV with Netflix, Roku, Amazon Prime Video", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Pocket wifi", "Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "BBQ grill", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Babysitter recommendations", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Pool", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Patio or balcony", "Freezer", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Dining table", "Clothing storage: wardrobe and closet", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Private entrance", "Shampoo", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Cooking basics", "Hot water", "First aid kit", "Hangers", "Refrigerator", "Free street parking", "Lockbox", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "wow refrigerator", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "wow stainless steel oven", "Smoke alarm", "wow electric stove", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door", "Pour-over coffee"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Bread maker", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Fire pit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "aesoap conditioner", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Game console", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Iron", "Stove", "Shampoo", "Microwave", "Coffee maker", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Dishes and silverware", "Cooking basics", "Hot water", "Refrigerator", "Hangers", "Smoke alarm", "Host greets you", "Oven", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Private entrance", "Keypad", "Iron", "Shampoo", "Stove", "Bed linens", "Oven", "Dishwasher", "Smoke alarm", "Microwave", "Hangers", "Air conditioning", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "Cable TV", "First aid kit", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Free street parking", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Free parking on premises", "Patio or balcony"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Portable fans", "Refrigerator", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Patio or balcony", "Oven", "Hair dryer", "Backyard"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Patio or balcony"] 1 ["Heating", "Essentials", "Private entrance", "Gym", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Pool"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Iron", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Stove", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Host greets you"] 1 ["Heating", "Essentials", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Coffee maker", "Microwave", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Air conditioning", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Free parking garage on premises \u2013 1 space", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Pocket wifi", "Sound system", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub"] 1 ["Heating", "Kitchen", "Gym", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Self check-in", "Full kitchen", "Pack \u2019n Play/travel crib", "Air conditioning", "Paid parking off premises", "Backyard", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Crib", "Bedroom comforts", "Room-darkening shades", "Smoke alarm", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Cooking basics", "Paid parking on premises", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Record player", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "TV", "Pocket wifi", "Sound system", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Host greets you"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Private entrance", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Pool", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "TV with standard cable", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Extra pillows and blankets", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Indoor fireplace", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Bedroom comforts", "Room-darkening shades", "Smoke alarm", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Dishwasher", "Fireplace guards", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "danby refrigerator", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Baking sheet", "Breakfast", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Neutrogena conditioner", "Long term stays allowed", "danby oven", "Portable fans", "Neutrogena shampoo", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "danby electric stove", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "TV", "Neutrogena body soap", "Rice maker", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "EV charger", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Pool", "Hair dryer", "Host greets you", "Dryer", "First aid kit", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Gym", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Hot tub", "Dryer", "Bed linens", "Elevator", "First aid kit", "Indoor fireplace", "Patio or balcony", "Microwave", "Long term stays allowed", "Refrigerator", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Fireplace guards"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Shampoo", "Wifi", "Carbon monoxide alarm", "Bed linens", "Elevator", "TV", "Hot water", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "58\" HDTV with Netflix", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Lockbox", "Axe, L'Oreal, Dove body soap", "Hair dryer", "Gym", "Cleaning products", "Single level home", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Wifi \u2013 300 Mbps", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Wine glasses"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Kitchen", "Dryer", "TV", "Hangers", "Private entrance", "Long term stays allowed", "Heating", "Air conditioning", "Wifi", "Smoke alarm", "Washer", "Carbon monoxide alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Private entrance", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Children\u2019s books and toys", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm"] 1 ["Iron", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Babysitter recommendations", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Backyard", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Extra pillows and blankets", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Waterfront", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Baby safety gates", "Wifi", "Dedicated workspace", "Free parking on premises", "Game console", "TV", "Long term stays allowed", "Children\u2019s dinnerware", "Pack \u2019n Play/travel crib", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you", "Bathtub"] 1 ["Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Smart lock", "Cleaning products", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Wifi \u2013 300 Mbps", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Electric stove", "Paid parking lot on premises \u2013 CAD7 per day, 1 space", "TV", "Dishwasher", "Wine glasses", "Ceiling fan"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Bluetooth sound system", "Stove", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Record player", "Backyard", "Smart lock", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "Washer", "Elevator", "Coffee maker", "High chair", "Waterfront", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Portable fans", "Body soap", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Shower gel", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Beachfront", "Wifi", "Keypad", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Carbon monoxide alarm", "Bathtub", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Coffee maker", "Pool", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Changing table", "High chair"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Security cameras on property", "Hot water", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Wine glasses"] 1 ["Heating", "Kitchen", "Private entrance", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Outdoor furniture", "TV", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Smoke alarm", "Free parking on premises", "Washer", "TV", "Bedroom comforts", "Free street parking", "Coffee maker", "Room-darkening shades", "Bathroom essentials", "Carbon monoxide alarm", "Hair dryer", "Wifi", "Iron", "Kitchenette", "Dryer", "Game console", "Heating", "Dishwasher", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Private entrance", "Lockbox", "Shower gel", "Shampoo", "Iron", "Stove", "Backyard", "Portable fans", "High chair", "Bed linens", "Oven", "Dishwasher", "Pack \u2019n Play/travel crib", "Smoke alarm", "Microwave", "Hangers", "Dedicated workspace", "Sound system with Bluetooth and aux", "Children\u2019s dinnerware", "Babysitter recommendations", "Body soap", "Children\u2019s books and toys", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "Cable TV", "First aid kit", "Hair dryer", "Wifi", "Washer", "Hot water", "TV with standard cable", "Crib", "Extra pillows and blankets", "Cooking basics", "Essentials", "Long term stays allowed", "Free street parking", "Conditioner", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Baby safety gates", "Free parking on premises", "Patio or balcony", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Shared pool", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "TV with standard cable", "Wifi", "Long term stays allowed", "Hair dryer", "Cable TV"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Electric stove", "Shower gel", "Dishwasher", "High chair"] 1 ["Iron", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Essentials", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Security cameras on property", "Hot water", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub"] 1 ["Iron", "miele stainless steel gas stove", "Hot tub", "miele refrigerator", "Bed linens", "Cooking basics", "aveena body soap", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pool", "miele oven", "Hair dryer", "Air conditioning", "Free dryer\u2013In unit", "Gym", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Free washer\u2013In unit", "Beachfront", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Bathtub", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Host greets you", "Dryer", "Free parking on premises", "Dedicated workspace", "Room-darkening shades", "Cooking basics", "Ethernet connection", "Indoor fireplace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Fireplace guards", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Kitchen", "Essentials", "Private entrance", "Iron", "Stove", "Shampoo", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Refrigerator", "Hangers", "Oven", "Hair dryer"] 1 ["Long term stays allowed", "Essentials"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Wifi \u2013 500 Mbps", "Gym", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Electric stove", "TV", "Dishwasher"] 1 ["Private entrance", "Lockbox", "Iron", "Shampoo", "Stove", "Bed linens", "Oven", "Dishwasher", "Smoke alarm", "Pack \u2019n Play/travel crib", "Microwave", "Hangers", "Dedicated workspace", "Children\u2019s books and toys", "Coffee maker", "Fire extinguisher", "Refrigerator", "Single level home", "Heating", "Cable TV", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Free parking on premises"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Smart lock", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Clothing storage: walk-in closet, closet, and dresser", "Hair dryer", "Free dryer\u2013In unit", "Cleaning products", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Smoke alarm", "Hot water kettle", "52\" HDTV with Roku, Netflix", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Self check-in", "TV", "Full kitchen", "Bathtub", "Free street parking", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Private entrance", "Keurig coffee machine", "Shower gel", "Shampoo", "Iron", "Stove", "Backyard", "BBQ grill", "Smart lock", "High chair", "Bed linens", "Fireplace guards", "Oven", "Dishwasher", "Smoke alarm", "Microwave", "Hot water kettle", "Hangers", "Dedicated workspace", "Outdoor furniture", "Air conditioning", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "Cable TV", "First aid kit", "Indoor fireplace", "Table corner guards", "Security cameras on property", "Hair dryer", "Luggage dropoff allowed", "Dining table", "Wifi", "Washer", "Outdoor dining area", "Hot water", "Bread maker", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Toaster", "Essentials", "Freezer", "Long term stays allowed", "Free street parking", "Free carport on premises \u2013 2 spaces", "Carbon monoxide alarm", "Dryer", "Ethernet connection", "Piano", "Dishes and silverware", "Barbecue utensils", "Baking sheet", "Wine glasses", "Kitchen", "EV charger", "Outlet covers", "Patio or balcony", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Portable air conditioning", "Dishes and silverware", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Clothing storage: wardrobe", "Extra pillows and blankets", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Waterfront", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Paid parking on premises", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Ski-in/Ski-out", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Changing table", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Host greets you"] 1 ["Iron", "Dryer", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "High chair"] 1 ["Dryer", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "First aid kit", "Hangers", "Indoor fireplace", "Breakfast", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Fire extinguisher", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Carbon monoxide alarm", "Bathtub", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Hair dryer", "Dryer", "Dedicated workspace", "Long term stays allowed", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Extra pillows and blankets", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hair dryer", "Hangers", "Private entrance", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Long term stays allowed", "Heating", "Kitchen", "Free parking on premises", "Shampoo", "Pool", "TV", "Dedicated workspace", "Gym", "Fire extinguisher", "Essentials", "Dryer", "Air conditioning", "Wifi", "Washer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Coffee maker", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Keypad", "Hot water", "Refrigerator", "Hangers", "Beachfront", "Free street parking", "Smoke alarm", "Patio or balcony", "Hair dryer", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Nespresso machine", "Building staff", "Wifi", "TV", "Paid parking on premises", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Air conditioning", "Hair dryer", "Paid parking off premises"] 1 ["Piano", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Dryer", "Dishwasher", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Oven"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "TV", "Hot water", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Extra pillows and blankets", "Bathtub", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Smoke alarm", "Essentials", "Long term stays allowed", "Wifi"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Cooking basics", "Elevator", "TV", "Hot water", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Shared indoor pool", "Paid parking lot on premises \u2013 CAD19 per day, 1 space", "Dryer", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Shared hot tub", "Free street parking", "Lockbox", "Hair dryer", "Shared gym in building", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Electric stove", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Shared sauna"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Iron", "Gym", "Dryer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Microwave", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "Refrigerator", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Host greets you", "Oven"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Elevator", "Free parking on premises", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Hangers", "Dryer", "Fire extinguisher", "Essentials", "Heating", "Kitchen"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Sauna", "TV with standard cable", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Wine glasses", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Private entrance", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Ceiling fan"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Shampoo", "Microwave", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Toaster", "Safe", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "Hot water", "Hangers", "Free street parking", "Breakfast", "Luggage dropoff allowed", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Smoke alarm", "Washer", "TV", "Dedicated workspace", "Free street parking", "Carbon monoxide alarm", "Hair dryer", "Indoor fireplace", "Long term stays allowed", "Luggage dropoff allowed", "Iron", "Wifi", "Hangers", "Dryer", "Fire extinguisher", "Essentials", "Heating", "Kitchen", "Hot water"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Smart lock", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Bed linens", "Cooking basics", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Portable fans", "Refrigerator", "Free street parking", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Pocket wifi", "Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Indoor fireplace", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Freezer", "Dedicated workspace: desk and office chair", "Clothing storage: closet and dresser", "Essentials", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Hangers", "Gas stove", "Hair dryer", "Backyard", "Gym", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Toaster", "Free washer\u2013In unit", "Safe", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Host greets you", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Waterfront", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "40\" HDTV with Netflix", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Sauna", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["EV charger", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Hot water", "Free parking garage on premises", "Baking sheet", "Patio or balcony", "Shared indoor heated pool", "Freezer", "Dedicated workspace: desk and office chair", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Central air conditioning", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Wifi \u2013 150 Mbps", "Shared gym in building", "Cleaning products", "Single level home", "Carbon monoxide alarm", "Dining table", "Toaster", "Free washer\u2013In unit", "Safe", "Smoke alarm", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Outdoor furniture", "Shower gel", "kirkland shampoo", "Dishwasher", "Rice maker", "Miele oven", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Rice maker"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Heating", "Essentials", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Lockbox", "Hangers", "Indoor fireplace", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Bathtub", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Clothing storage: closet, dresser, and wardrobe", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Children\u2019s books and toys for ages 0-2 years old, 2-5 years old, 5-10 years old, and 10+ years old", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Hot tub", "Dryer", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Pool", "Free street parking", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Central heating", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Gas stove", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Lockbox", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Long term stays allowed", "Paid parking on premises", "Hot water", "First aid kit", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Game console", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Mosquito net", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Free washer", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Paid parking off premises", "Gym", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Microwave", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Coffee maker", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Breakfast", "Air conditioning", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Shower gel", "TV", "Sound system", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Board games", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Bidet", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "BOSE Bluetooth sound system", "Bathtub"] 1 ["Iron", "Shampoo", "Stove", "Bed linens", "Pool", "Oven", "Dishwasher", "Microwave", "Smoke alarm", "Hangers", "Dedicated workspace", "Paid parking off premises", "Hot tub", "Fire extinguisher", "Refrigerator", "Single level home", "Heating", "First aid kit", "Elevator", "Gym", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "Cooking basics", "Essentials", "Long term stays allowed", "TV", "Carbon monoxide alarm", "Lock on bedroom door", "Dryer", "Dishes and silverware", "Kitchen"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Hair dryer", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Hair dryer", "Hangers", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Breakfast", "Long term stays allowed", "Heating", "Indoor fireplace", "Kitchen", "Free parking on premises", "Shampoo", "Pool", "TV", "Dedicated workspace", "Gym", "Fire extinguisher", "Essentials", "Dryer", "Wifi", "Washer"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Nespresso machine", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Sound system", "Dishwasher", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Sauna", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Central heating", "Bed linens", "Hot water", "Essentials", "Shampoo", "Bluetooth sound system", "Portable fans", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Record player", "Cleaning products", "Wifi", "Bidet", "Conditioner", "Smoke alarm", "Room-darkening shades", "Laundromat nearby", "Fire extinguisher", "Dedicated workspace: table", "Shower gel", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Wifi", "Carbon monoxide alarm", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Host greets you", "Bathtub"] 1 ["Bidet", "Clothing storage: closet", "Cleaning products", "Wine glasses", "Carbon monoxide alarm", "Paid parking garage off premises \u2013 CAD20 per day", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Hot water kettle", "Hair dryer", "First aid kit", "Dishwasher", "Free washer\u2013In unit", "Free parking on premises", "Dedicated workspace", "Freezer", "Body soap", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Drying rack for clothing", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Toaster", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Shared pool", "Beachfront", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Indoor fireplace", "Pool", "Air conditioning", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Game console", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Room-darkening shades", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Washer", "Hot water kettle", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Backyard", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Cable TV"] 1 ["Dryer", "Central heating", "Cooking basics", "Dedicated workspace: desk", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Cable TV", "HDTV with Netflix", "Cleaning products", "Washer", "Wifi", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Kitchen", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "TV with standard cable", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dedicated workspace", "Free street parking", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Samsung refrigerator", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Samsung induction stove", "Heating", "Kitchen", "Coffee maker", "Samsung oven", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Self check-in", "TV", "Full kitchen", "Free street parking", "Bedroom comforts", "Room-darkening shades", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "Hot water", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lockbox", "Smoke alarm", "Patio or balcony", "Hair dryer", "Backyard"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "HDTV with standard cable", "Ethernet connection", "Wifi \u2013 100 Mbps", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dedicated workspace: office chair and desk", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Dishes and silverware", "Paid street parking off premises", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Shared gym in building", "Cleaning products", "Single level home", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Window AC unit", "Fire extinguisher", "Coffee maker", "Electric stove", "Laundromat nearby", "Ceiling fan", "Paid parking garage on premises", "Shower gel", "Sound system", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Elevator", "Paid street parking off premises \u2013 CAD3 per hour", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Bikes", "Radiant heating", "Paid washer\u2013In building", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Cable TV", "Gym", "Cleaning products", "Dedicated workspace", "Conditioner", "Dining table", "Shared pool", "Toaster", "Beachfront", "Luggage dropoff allowed", "Room-darkening shades", "Paid dryer\u2013In building", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Laundromat nearby", "Coffee maker", "Wifi \u2013 50 Mbps", "Private entrance", "55\" HDTV with standard cable", "Shower gel", "Pocket wifi", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Smoke alarm", "Heating", "Kitchen", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Wifi", "Dedicated workspace", "Long term stays allowed", "Elevator", "Cooking basics", "Free parking on premises", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Hot water"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Cleaning before checkout", "Nespresso machine", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Sound system", "Dishwasher", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you", "High chair"] 1 ["Iron", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Washer", "Hair dryer", "Dryer", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Indoor fireplace", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Kitchen", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Smoke alarm", "Air conditioning", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Microwave", "Private entrance", "Wifi", "Long term stays allowed", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Long term stays allowed", "Hot water", "Lockbox", "Hangers", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Private entrance", "Lockbox", "Shower gel", "Shampoo", "Iron", "Backyard", "BBQ grill", "Bed linens", "Smoke alarm", "Microwave", "Laundromat nearby", "Hangers", "Dedicated workspace", "Outdoor furniture", "Fire pit", "Body soap", "Beach essentials", "Coffee maker", "Fire extinguisher", "Single level home", "Heating", "Cable TV", "First aid kit", "Security cameras on property", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Free street parking", "Conditioner", "Dryer", "Dishes and silverware", "Barbecue utensils", "Mini fridge", "Kitchen"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Wifi", "Bed linens", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Lock on bedroom door", "Dryer", "Hair dryer", "Long term stays allowed", "Hangers", "Shampoo", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Washer", "Hot water", "Host greets you", "Extra pillows and blankets", "Bed linens", "Free parking on premises", "Essentials", "Fire extinguisher", "Free street parking", "Heating", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Hair dryer", "Hangers", "Private entrance", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Breakfast", "Long term stays allowed", "Heating", "Indoor fireplace", "Kitchen", "Free parking on premises", "Shampoo", "Pool", "TV", "Dedicated workspace", "Gym", "Fire extinguisher", "Host greets you", "Essentials", "Dryer", "Air conditioning", "Wifi", "Washer"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Washer", "Dryer", "Wifi", "Free parking on premises", "Self check-in", "Carbon monoxide alarm", "TV", "Free street parking", "Bedroom comforts", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Beachfront"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Game console", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Smart lock", "Gym", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Shower gel", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "TV", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Elevator", "Cooking basics", "Keurig coffee machine", "Hot water", "Essentials", "Portable air conditioning", "Dishes and silverware", "Microwave", "Stove", "Trash compactor", "Paid street parking off premises", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Paid parking garage on premises \u2013 1 space", "Wifi", "Dryer \u2013\u00a0In unit", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Paid parking off premises", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Barbecue utensils", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Pocket wifi", "Sound system", "Wine glasses", "Pour-over coffee"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Indoor fireplace", "Free street parking", "Bedroom comforts", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Paid parking off premises", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Kitchen", "Iron", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hangers", "Pool", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Heating", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Hot water", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Extra pillows and blankets", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Bathtub", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Wifi", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "Keypad", "TV", "First aid kit", "Hangers", "Washer \u2013\u00a0In unit", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Indoor fireplace", "Breakfast", "Smoke alarm", "Host greets you", "Bathtub", "Air conditioning"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Lake access", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Fireplace guards", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Indoor fireplace", "Patio or balcony", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Kitchen", "Essentials", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Indoor fireplace", "Smoke alarm", "Cable TV"] 1 ["Heating", "Essentials", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Shared pool", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher"] 1 ["Extra pillows and blankets", "Bathtub", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "High chair", "Hair dryer", "Children\u2019s dinnerware", "TV with standard cable", "Crib", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you"] 1 ["EV charger", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Patio or balcony", "Hair dryer", "Cable TV"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Nespresso machine", "Gym", "Cleaning products", "Single level home", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "24\" HDTV with Apple TV, Netflix", "Pocket wifi", "Rice maker", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Stove", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Keypad", "TV", "Hot water", "Free street parking", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Fire extinguisher", "TV", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Coffee maker", "Shampoo", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Free street parking", "Lockbox", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Building staff", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Indoor fireplace", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["100% Organic Kirkland conditioner", "Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Trash compactor", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "100% Organic Kirkland shampoo", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Free dryer\u2013In unit", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Mosquito net", "Free washer\u2013In unit", "100% Organic Kirkland body soap", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Ceiling fan", "Shower gel", "HDTV with Amazon Prime Video", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Washer", "Dryer", "Wifi", "Free parking on premises", "Self check-in", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Indoor fireplace", "Free street parking", "Bedroom comforts", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Keypad", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Microwave", "Private entrance", "Wifi", "Long term stays allowed", "Cooking basics", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Oven", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer", "Smart lock"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Dryer", "Cooking basics", "Hot water", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Lockbox", "Hair dryer", "Backyard", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Long term stays allowed", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Washer", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Shampoo", "Hangers", "Free street parking", "Waterfront", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Kitchen", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Backyard", "Free street parking", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Safe", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Indoor fireplace", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Coffee maker", "Electric stove", "Private entrance", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Paid parking garage on premises \u2013 CAD50 per day, 1 space", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer \u2013\u00a0In unit", "Window guards", "Baking sheet", "Laundromat nearby", "Outlet covers", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Elevator", "Keurig coffee machine", "Coffee maker", "Free parking garage on premises \u2013 1 space", "Portable air conditioning", "Hair dryer", "Smart lock", "Dishwasher", "Dedicated workspace", "Portable fans", "Body soap", "HDTV with Netflix", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Washer \u2013\u00a0In unit", "Smoke alarm", "Private entrance", "Shower gel", "Gym", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Paid street parking off premises", "Wifi", "Kitchen", "Fire extinguisher", "Hot tub", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "sonos, bose Bluetooth sound system", "Patio or balcony", "Bathtub", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Game console", "Portable fans", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "LG refrigerator", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Changing table"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "Pocket wifi", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["EV charger", "Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Kitchenaid gas stove", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Kitchenaid Gas Oven stainless steel oven", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Piano", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Fire pit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Wifi \u2013 100 Mbps", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Free dryer\u2013In unit", "Board games", "Single level home", "Cleaning products", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Free washer\u2013In unit", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Dedicated workspace: table", "55\" HDTV with Roku", "Coffee maker", "Electric stove", "Outdoor furniture", "Paid parking garage on premises", "Shower gel", "Liquid Body Wash body soap", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Sonos Bluetooth sound system"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Backyard", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Essentials", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Nespresso machine", "Gym", "Washer", "Bidet", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Sound system", "Rice maker", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Baking sheet", "Patio or balcony", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Sound system with aux", "Outlet covers", "Game console", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Record player", "Backyard", "Board games", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "TV with Netflix, Roku", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Outdoor furniture", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Gas stove", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Paid parking on premises", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Paid parking off premises", "Cable TV"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishes and silverware", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Keypad", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Bed linens", "40\" HDTV with Netflix", "Keurig coffee machine", "Cooking basics", "Frigidaire electric stove", "Hot water", "Baking sheet", "Dove body soap", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Radiant heating", "Frigidaire refrigerator", "Frigidaire oven", "Portable fans", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Dove shampoo", "Shower gel", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Coffee maker", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Paid street parking off premises \u2013 CAD2 per hour", "Lockbox", "Hair dryer", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Paid parking garage on premises \u2013 CAD100 per stay, 1 space", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Pour-over coffee", "Extra pillows and blankets", "Kirkland conditioner"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Outlet covers", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Fireplace guards", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dining table", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Wine glasses"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Nespresso machine", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Babysitter recommendations", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Stove", "Cooking basics", "Hair dryer", "Hangers", "First aid kit", "Coffee maker", "Dishwasher", "Iron", "Smoke alarm", "Paid parking garage on premises \u2013 1 space", "Carbon monoxide alarm", "Long term stays allowed", "Heating", "Indoor fireplace", "Cleaning before checkout", "Oven", "Kitchen", "Shampoo", "Pool", "TV", "Dedicated workspace", "Refrigerator", "Baking sheet", "Fire extinguisher", "Hot tub", "Microwave", "Gym", "Essentials", "Dryer", "Freezer", "Rice maker", "Wifi", "Dishes and silverware", "Washer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV"] 1 ["Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "Paid parking lot on premises \u2013 CAD7 per day, 1 space", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Shared pool", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "High chair"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Stove", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Refrigerator", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "HDTV with Netflix, standard cable", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Free dryer\u2013In unit", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Keypad", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Luggage dropoff allowed", "Ikea hot plate stainless steel electric stove", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Bathtub", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Kitchen", "Essentials", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Indoor fireplace"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Host greets you", "Extra pillows and blankets"] 1 ["Baking sheet", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Sound system", "Air conditioning", "Coffee maker", "Hair dryer", "Host greets you", "Dryer", "First aid kit", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Sound system", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "Mini fridge", "Baking sheet", "Breakfast", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Bikes", "Portable fans", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Lock on bedroom door", "Rice maker", "Pour-over coffee", "Bathtub", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Backyard", "Washer", "Wifi", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer", "Paid parking off premises"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Dining table", "Fire pit", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Sound system", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Heating", "Kitchen", "Dishes and silverware", "Stove", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Refrigerator", "Hangers", "Smoke alarm", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Fireplace guards", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Cleaning products", "Extra pillows and blankets", "Central heating", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Hangers", "Essentials", "Wifi \u2013 500 Mbps", "Dining table", "Bed linens", "Hot water kettle", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Children\u2019s dinnerware", "First aid kit", "Dishwasher", "65\" HDTV with premium cable", "Dedicated workspace", "Free street parking", "Freezer", "Body soap", "Cooking basics", "Long term stays allowed", "Drying rack for clothing", "Iron", "Pack \u2019n Play/travel crib", "Free washer\u2013In building", "Refrigerator", "Hot water", "Smoke alarm", "Barbecue utensils", "Private entrance", "Shower gel", "Clothing storage: closet and dresser", "Microwave", "Shampoo", "Conditioner", "Free dryer\u2013In building", "Dishes and silverware", "Toaster", "Single level home", "Keypad", "Kitchen", "Fire extinguisher", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Building staff", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Fire extinguisher", "Stove", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Heating", "Kitchen", "Private entrance", "Stove", "Microwave", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Dishwasher", "Smoke alarm", "Oven"] 1 ["Heating", "Essentials", "Coffee maker", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Security cameras on property", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Luggage dropoff allowed", "Hair dryer", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Stove", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Smoke alarm", "Patio or balcony", "Oven"] 1 ["Iron", "Dryer", "Full kitchen", "Shared hot tub", "Pool", "Free street parking", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Kitchen", "Wifi", "Long term stays allowed", "Elevator", "TV", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Outdoor shower", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Game console", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Lake access", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Paid parking off premises", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Sound system with Bluetooth and aux", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ceiling fan", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Rice maker", "Fireplace guards", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Elevator", "Self check-in", "Hair dryer", "Carbon monoxide alarm", "TV", "Full kitchen", "Bedroom comforts", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Wifi", "Long term stays allowed", "TV", "Refrigerator", "Hangers", "Free street parking"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Lockbox", "Iron", "Shampoo", "Stove", "High chair", "Bed linens", "Pool", "Oven", "Dishwasher", "Microwave", "Smoke alarm", "Hangers", "Dedicated workspace", "Paid parking off premises", "Hot tub", "Coffee maker", "Refrigerator", "Single level home", "Heating", "Elevator", "Hair dryer", "Gym", "Wifi", "Washer", "Hot water", "Cooking basics", "Paid parking on premises", "Essentials", "Long term stays allowed", "TV", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Free parking on premises", "Patio or balcony", "Bathtub"] 1 ["Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Breakfast", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Natural Organic body soap", "Bikes", "Long term stays allowed", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Record player", "Cable TV", "Cleaning before checkout", "Board games", "Cleaning products", "Top End Stainless Steel refrigerator", "Washer", "Wifi", "Carbon monoxide alarm", "Game console: Xbox 360", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "High End Audiophile sound system with Bluetooth and aux", "Outdoor furniture", "Natural Organic conditioner", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Bathtub", "Outlet covers", "Game console", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Baby bath", "Crib", "Room-darkening shades", "Bedroom comforts", "Smoke alarm", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Kitchen", "Dryer", "Wifi", "Washer", "Elevator", "Long term stays allowed", "Smoke alarm"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Kitchen", "Body soap", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "Cooking basics", "TV", "Security cameras on property", "Hot water", "Lockbox", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Building staff", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Pool", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "Washer \u2013\u00a0In building", "Hangers", "Smoke alarm", "Dryer \u2013 In building"] 1 ["Iron", "Dryer", "Full kitchen", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Room-darkening shades", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Indoor fireplace", "Pool", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Pool", "Smoke alarm", "Host greets you", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Dedicated workspace: desk and office chair", "Drying rack for clothing", "Essentials", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Shared hot tub", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Stainless steel gas stove", "Nespresso machine", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Shared pool", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Outdoor furniture", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Cooking basics", "Hot water", "Backyard"] 1 ["Window guards", "Pocket wifi", "Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "Washer", "Elevator", "Children\u2019s books and toys", "Air conditioning", "Coffee maker", "Pool", "Hair dryer", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Room-darkening shades", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Shower gel", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Dedicated workspace: desk and table", "Free driveway parking on premises \u2013 1 space", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Stove", "Long term stays allowed", "Paid washer\u2013In building", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Cleaning products", "Carbon monoxide alarm", "Conditioner", "Wifi \u2013 300 Mbps", "Toaster", "Room-darkening shades", "Paid dryer\u2013In building", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Clothing storage: dresser", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Lockbox", "Hangers", "Lock on bedroom door", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "TV", "Host greets you"] 1 ["Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Stove", "Ethernet connection", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Cooking basics", "Refrigerator", "First aid kit", "Hangers", "Free street parking", "Patio or balcony", "Oven", "Extra pillows and blankets", "Cleaning before checkout"] 1 ["Carbon monoxide alarm", "Bathtub", "Stove", "Lockbox", "Essentials", "Heating", "Washer", "BBQ grill", "Beach essentials", "Children\u2019s books and toys", "Coffee maker", "Hair dryer", "Children\u2019s dinnerware", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Babysitter recommendations", "Cooking basics", "Long term stays allowed", "Iron", "Game console", "Pack \u2019n Play/travel crib", "Fireplace guards", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Hair dryer", "Stainless steel gas stove", "Stainless steel oven", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Pool table", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Clothing storage: dresser, closet, and walk-in closet", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Hair dryer", "Dryer", "First aid kit", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Kitchen", "Oven", "Cable TV"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Dedicated workspace: desk", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Shared hot tub", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Shared indoor heated olympic-sized saltwater lap pool", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Stainless steel stove", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Nespresso machine", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Portable fans", "Hangers", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Babysitter recommendations", "Children\u2019s dinnerware", "Host greets you", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Hot tub", "Dryer", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Board games", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Elevator", "Hair dryer", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Free street parking", "Bedroom comforts", "Room-darkening shades", "Air conditioning"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Washer", "HDTV with Roku", "Wifi", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["EV charger", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Rice maker", "Wine glasses"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets", "High chair"] 1 ["EV charger", "Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Game console", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Wifi", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Waterfront", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Dining table", "Keypad", "Toaster", "Beachfront", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dedicated workspace: table", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "First aid kit", "Mini fridge", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Dryer \u2013 In building", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "Washer \u2013\u00a0In building", "TV", "Lock on bedroom door", "Induction stove"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Breakfast"] 1 ["Iron", "Piano", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Sound system", "Dishwasher", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Security cameras on property", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Ski-in/Ski-out", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Ceiling fan"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Host greets you"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Stove", "Microwave", "Dishes and silverware", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Patio or balcony", "Oven", "Hair dryer"] 1 ["Iron", "Bed linens", "Geneva Bluetooth sound system", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Microwave", "Long term stays allowed", "365 by Whole Foods conditioner", "Radiant heating", "Portable fans", "Hangers", "Free street parking", "60\" HDTV with Netflix, Apple TV", "Marshall refrigerator", "Hair dryer", "365 by Whole Foods body soap", "Wifi \u2013 150 Mbps", "Free dryer\u2013In unit", "Nespresso machine", "Single level home", "Cleaning products", "Carbon monoxide alarm", "Private garden or backyard", "Dining table", "Keypad", "Security cameras on property", "365 by Whole Foods shampoo", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Private entrance", "Fire extinguisher", "Outdoor furniture", "Shower gel", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Shared pool", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Private entrance", "Coffee maker", "Shampoo", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "Shower gel", "TV", "Hot water", "Security cameras on property", "Lock on bedroom door", "Refrigerator", "Free street parking", "Smoke alarm", "Extra pillows and blankets", "Air conditioning"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Air conditioning", "Extra pillows and blankets", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Kitchen", "Essentials", "Iron", "Fire extinguisher", "Lake access", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Baby safety gates", "Paid parking on premises", "Patio or balcony", "Essentials", "Shampoo", "Window guards", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Luggage dropoff allowed", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Keypad", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Security cameras on property", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Hangers", "Dryer", "Fire extinguisher", "Essentials", "Heating", "Kitchen"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Shampoo", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "TV", "First aid kit", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Bed linens", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Waterfront", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "danby refrigerator", "Dryer", "Cooking basics", "Keurig coffee machine", "Baking sheet", "Breakfast", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Neutrogena conditioner", "Long term stays allowed", "danby oven", "Portable fans", "Neutrogena shampoo", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Room-darkening shades", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Neutrogena body soap", "danby stove", "Rice maker", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Oven", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Sound system", "Wine glasses"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Game console", "Free residential garage on premises \u2013 2 spaces", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Nespresso machine", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Washer", "Wifi", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Body soap", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Heating", "Gym", "Dryer", "Washer", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Pool"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Wifi", "Cooking basics", "TV", "Free street parking", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Sound system", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Carbon monoxide alarm", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Hair dryer", "Dryer", "First aid kit", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Hot water", "Smoke alarm", "TV", "Shampoo", "Wifi", "Kitchen"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Free parking on premises", "Carbon monoxide alarm", "Fire extinguisher", "TV", "Dishwasher", "Bedroom comforts", "Pets allowed", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Fireplace guards", "Bathtub"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Breakfast", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Paid parking off premises"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "TV", "Free street parking", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Long term stays allowed", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Rice maker", "Induction stove", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Ethernet connection", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Sony Bluetooth sound system", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Ethernet connection", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Host greets you", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Washer", "Children\u2019s books and toys", "Hair dryer", "Dryer", "First aid kit", "Free parking on premises", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Hot water", "Smoke alarm", "Shampoo", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Bed linens", "40\" HDTV with Chromecast, Netflix", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Stainless steel gas stove", "Cleaning products", "Stainless steel oven", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Fire pit", "Sound system with Bluetooth and aux", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Outdoor furniture", "Shower gel", "Pocket wifi", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Waterfront", "Pool", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Cleaning before checkout", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven"] 1 ["Heating", "Essentials", "Wifi", "Free parking on premises", "TV", "Hot water", "Free street parking", "Host greets you"] 1 ["Heating", "Essentials", "Fire extinguisher", "Stove", "Dishes and silverware", "Wifi", "Long term stays allowed", "Cooking basics", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Oven", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Dining table", "Keypad", "Toaster", "Beachfront", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dedicated workspace: table", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Waterfront", "Hair dryer", "Cable TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Private entrance", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Cleaning before checkout", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Iron", "Piano", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Stainless steel gas stove", "Single level home", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Rice maker"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Cable TV", "Washer", "Wifi", "Security cameras on property", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Bluetooth sound system", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Nespresso machine", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "sono conditioner", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Pool", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Lock on bedroom door", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses", "Host greets you", "Bathtub"] 1 ["Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Fireplace guards"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Window guards", "Clothing storage: closet", "Cleaning products", "Extra pillows and blankets", "Wine glasses", "Carbon monoxide alarm", "Free dryer\u2013In unit", "Bathtub", "Outdoor furniture", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Dining table", "Paid parking on premises", "Bed linens", "Building staff", "Washer", "BBQ grill", "Hot water kettle", "Coffee maker", "Elevator", "Portable air conditioning", "Pool", "Hair dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Sauna", "Dedicated workspace", "Free street parking", "Portable fans", "Freezer", "Room-darkening shades", "Body soap", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Drying rack for clothing", "Iron", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "Outdoor dining area", "Shower gel", "Gym", "Microwave", "Shampoo", "Conditioner", "Mini fridge", "Dishes and silverware", "Wifi", "Toaster", "Patio or balcony", "Kitchen", "Single level home", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ski-in/Ski-out", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Smoke alarm", "Room-darkening shades", "Oven", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Pool", "Smoke alarm"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Washer", "Coffee maker", "Hair dryer", "Host greets you", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Smoke alarm", "TV", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Breakfast", "Cable TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Smoke alarm", "Washer", "TV", "Elevator", "Free parking on premises", "Dedicated workspace", "Gym", "Pool", "Cooking basics", "Long term stays allowed", "Iron", "Wifi", "Hangers", "Dryer", "Kitchen", "Heating", "Hot tub"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Smart lock", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Keypad", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Outdoor furniture", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Lake access", "Long term stays allowed", "Hangers", "Free street parking", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Ski-in/Ski-out", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "Smoke alarm", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Paid parking on premises", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cleaning products", "Wifi", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Wine glasses", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Elevator", "First aid kit", "Essentials", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Pocket wifi", "Sound system", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "Sound system", "BBQ grill", "Air conditioning", "Coffee maker", "High chair", "Hair dryer", "Smart lock", "Dryer", "TV with standard cable", "Piano", "Dishwasher", "Crib", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Body soap", "Cooking basics", "Ethernet connection", "Indoor fireplace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Changing table", "Extra pillows and blankets"] 1 ["Bedroom comforts", "Bathroom essentials", "Carbon monoxide alarm", "Bathtub", "Heating", "Washer", "Elevator", "Beach essentials", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Self check-in", "Iron", "Smoke alarm", "TV", "Gym", "Full kitchen", "Wifi", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Hair dryer"] 1 ["Heating", "Essentials", "Private entrance", "Shampoo", "Microwave", "Single level home", "Wifi", "Dedicated workspace", "Keypad", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Elevator", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "BBQ grill", "Hair dryer", "Air conditioning", "Stainless steel oven", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Electric stove", "TV", "Dishwasher", "Rice maker", "Stainless Steel with a water dispenser refrigerator", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "BBQ grill", "Coffee maker", "Hair dryer", "Dryer", "Piano", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Bed linens", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Body soap", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Self check-in", "Indoor fireplace", "Pets allowed", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Crib", "Room-darkening shades", "Bedroom comforts", "Smoke alarm", "Kitchen", "Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Fireplace guards", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Wifi", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Air conditioning", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Electric stove", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Sauna", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Smart lock", "Board games", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "HDTV with Amazon Prime Video, standard cable, Netflix, HBO Max", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "First aid kit", "Indoor fireplace", "Smoke alarm", "Cable TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Rice maker", "Extra pillows and blankets"] 1 ["Shower gel", "Shampoo", "Iron", "Stove", "Bed linens", "Oven", "Dishwasher", "Microwave", "Smoke alarm", "Hangers", "Dedicated workspace", "Paid parking off premises", "Air conditioning", "Coffee maker", "Refrigerator", "Heating", "Elevator", "Indoor fireplace", "Hair dryer", "Gym", "Wifi", "Washer", "Hot water", "Cooking basics", "Essentials", "Long term stays allowed", "TV", "Dryer", "Dishes and silverware", "Kitchen", "Patio or balcony", "Bathtub"] 1 ["Essentials", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "First aid kit", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Extra pillows and blankets", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Kitchen", "Wifi", "Long term stays allowed", "Hot water", "Smoke alarm"] 1 ["Kitchen", "Essentials", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Nespresso machine", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "TV with Roku"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Washer", "Hair dryer", "Dryer", "First aid kit", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Fire extinguisher"] 1 ["Dryer", "Cooking basics", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "TV", "Dishwasher", "Rice maker", "Wine glasses"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Clothing storage: closet", "Heating", "Kitchen", "Coffee maker", "Private entrance", "75\" HDTV", "Shower gel", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "55\" HDTV with Netflix, Amazon Prime Video, Chromecast", "Hangers", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Record player", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "sonos Bluetooth sound system", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "Hot water", "Hangers", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Stove", "Microwave", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Board games", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Shared pool", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Smoke alarm"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Fireplace guards", "Host greets you", "High chair"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Game console", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Breakfast", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Lake access", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Coffee maker", "Microwave", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Free street parking", "Smoke alarm", "Cable TV"] 1 ["Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Free parking garage on premises", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Backyard", "Gym", "Single level home", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Stove", "Shampoo", "Ethernet connection", "Microwave", "Dryer", "Washer", "Wifi", "Bed linens", "Elevator", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Oven"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "BBQ grill", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Nespresso machine", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Children\u2019s dinnerware", "First aid kit", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Smoke alarm", "Children\u2019s books and toys"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dining table", "Free parking on premises", "Toaster", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Free washer\u2013In building", "Iron", "Portable heater", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Fenced garden or backyard", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wine glasses", "Cleaning products", "Carbon monoxide alarm", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Lock on bedroom door", "Rice maker", "Wifi \u2013 940 Mbps", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Clothing storage: closet, dresser, and walk-in closet", "Backyard", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Security cameras on property", "Fire pit", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Ceiling fan", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Dryer", "Baby safety gates", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Clothing storage: walk-in closet and closet", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "KIRKLAND conditioner", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Dining table", "KIRKLAND body soap", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Bathtub", "High chair"] 1 ["Heating", "Kitchen", "Gym", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Long term stays allowed", "Indoor fireplace", "Cable TV"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Cleaning products", "Washer", "Wifi", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Outdoor furniture", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Sound system", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "Free parking on premises", "Hot water", "First aid kit", "Hangers", "Free street parking", "Lockbox", "Smoke alarm", "Extra pillows and blankets", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "TV with standard cable", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Microwave", "Long term stays allowed", "Hangers", "Dryer \u2013 In building", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "Washer \u2013\u00a0In building", "TV", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Essentials", "Shampoo", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Hot tub", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Piano", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Outdoor shower", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Private pool", "Free street parking", "Lockbox", "Bose Bluetooth sound system", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Board games", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Outdoor furniture", "Ceiling fan", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Kitchen", "Essentials", "Dryer", "Washer", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Waterfront", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Clothing storage", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Rice maker", "Bathtub"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Washer", "Dryer", "Wifi", "Elevator", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Pool", "Bedroom comforts", "Bathtub", "Hair dryer", "Paid parking off premises"] 1 ["Heating", "Essentials", "Private entrance", "Stove", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Hangers", "Smoke alarm", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Smoke alarm"] 1 ["Heating", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Bread maker", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Rice maker", "Extra pillows and blankets"] 1 ["Wifi \u2013 1000 Mbps", "Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Freezer", "Essentials", "Pristine/Hotel Grade Small Tube shampoo", "Dedicated workspace: office chair and desk", "Body soap", "Microwave", "Dishes and silverware", "Stove", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Free dryer\u2013In unit", "Board games", "Single level home", "Cleaning products", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Toaster", "Free washer\u2013In unit", "Smoke alarm", "Samsung Sound Bar Bluetooth sound system", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "Dishwasher", "Clothing storage: closet and walk-in closet", "55\" HDTV with Netflix, Roku", "Wine glasses", "Changing table"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Smoke alarm", "Washer", "Private entrance", "Free parking on premises", "Dedicated workspace", "Shampoo", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Lockbox", "Hangers", "Dryer", "Fire extinguisher", "Essentials", "Heating", "Kitchen", "Hot water"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Refrigerator", "Lockbox", "Hangers", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Stainless steel oven", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Host greets you"] 1 ["Kitchen", "Essentials", "Iron", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Dryer", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "TV", "Wine glasses"] 1 ["Kitchen", "Essentials", "Shampoo", "Washer", "Wifi", "Elevator", "TV", "Indoor fireplace", "Breakfast", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Baby bath", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Baby monitor", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Bathtub", "High chair"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Dryer \u2013 In building", "Backyard", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Washer \u2013\u00a0In building", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Smart lock", "Nespresso machine", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Freezer", "Essentials", "Stove", "Shampoo", "Microwave", "Sauna", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Pool", "Smoke alarm"] 1 ["Iron", "Dryer", "OGX Coconut Milk conditioner", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Cleaning before checkout", "Gym", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Shower gel", "OGX Coconut Milk shampoo", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Bathtub", "Hot water", "Cooking basics", "Hair dryer", "Hangers", "Coffee maker", "Private entrance", "House of Marley Bluetooth sound system", "Dishwasher", "Iron", "Smoke alarm", "Stainless steel gas stove", "Carbon monoxide alarm", "Outdoor dining area", "Long term stays allowed", "Heating", "Wine glasses", "Kitchen", "Pool", "TV", "Patio or balcony", "Dedicated workspace", "Cleaning products", "Paid parking garage on premises", "Refrigerator", "Baking sheet", "Fire extinguisher", "Hot tub", "Microwave", "Gym", "Essentials", "Cable TV", "Dryer", "Board games", "Trash compactor", "Toaster", "Outdoor furniture", "Free street parking", "Air conditioning", "Wifi", "Dishes and silverware", "Washer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Extra pillows and blankets", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Shared pool", "Long term stays allowed", "TV", "Hangers", "Building staff", "Air conditioning"] 1 ["EV charger", "Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Keypad", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Security cameras on property", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Wifi \u2013 100 Mbps", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with Chromecast", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Cleaning products", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Private entrance", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Smoke alarm", "Free parking on premises", "Private entrance", "Dedicated workspace", "Free street parking", "Shampoo", "Carbon monoxide alarm", "Cooking basics", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Backyard", "Hangers", "Kitchen", "Building staff", "Essentials", "Heating", "Hot water"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Cleaning before checkout", "Single level home", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Stove", "Wifi", "Long term stays allowed", "TV", "Washer \u2013\u00a0In building", "Hot water", "Hangers", "Smoke alarm", "Oven", "Dryer \u2013 In building"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Elevator", "Free parking on premises", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Changing table", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "TV with Roku"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Private entrance", "Coffee maker", "Dishes and silverware", "Shampoo", "Microwave", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "Keypad", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Dryer", "Central heating", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Body soap", "Shampoo", "Microwave", "Paid street parking off premises", "Long term stays allowed", "Paid washer\u2013In building", "Portable fans", "Refrigerator", "Hangers", "40\" HDTV", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Toaster", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Children\u2019s books and toys for ages 2-5 years old and 5-10 years old", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Dedicated workspace: table", "Private entrance", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Record player", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Sound system", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Board games", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Baby bath", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Changing table", "Fire extinguisher", "Coffee maker", "Ceiling fan", "Babysitter recommendations", "Shower gel", "Children\u2019s dinnerware", "Pocket wifi", "Rice maker", "Fireplace guards", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Keurig coffee machine", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Nespresso machine", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Outlet covers", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Piano", "Outdoor dining area", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Haier stainless steel oven", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Paid street parking off premises \u2013 CAD1 per hour", "Shampoo", "Microwave", "Haier stainless steel gas stove", "Long term stays allowed", "Hangers", "Electrolux refrigerator", "BBQ grill", "Hair dryer", "Smart lock", "Gym", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "BC Bud Skin Care conditioner", "Dining table", "Free parking on premises", "Toaster", "Sound system with Bluetooth and aux", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Ceiling fan", "Shower gel", "TV", "Dishwasher", "BC Bud Skin Care body soap", "Rice maker", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ceiling fan", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Indoor fireplace", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Bedroom comforts", "Room-darkening shades", "Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Outlet covers", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Sonos sound system", "Paid parking garage on premises \u2013 CAD20 per day, 1 space", "Patio or balcony", "Private fenced garden or backyard", "Essentials", "Wifi \u2013 280 Mbps", "Dishes and silverware", "Body soap", "Shampoo", "Central air conditioning", "Microwave", "Stove", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Shared indoor heated olympic-sized saltwater lap pool", "Cable TV", "Free dryer\u2013In unit", "Nespresso machine", "Shared gym in building", "Cleaning products", "Dedicated workspace", "Bidet", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Security cameras on property", "Fire pit", "Toaster", "Free washer\u2013In unit", "Room-darkening shades", "Crib", "75\" HDTV with Netflix, Amazon Prime Video", "Smoke alarm", "Hot water kettle", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Clothing storage: closet and walk-in closet", "Rice maker", "Wine glasses", "Private hot tub", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Stove", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Hot water", "Refrigerator", "Smoke alarm", "Host greets you", "Oven", "Extra pillows and blankets"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Microwave", "Bread maker", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Beachfront", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Wine glasses"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Paid parking off premises", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Microwave", "Dryer", "Wifi", "Carbon monoxide alarm", "Elevator", "Free parking on premises", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Patio or balcony", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Elevator", "Paid parking lot off premises", "Hot water", "Paid parking on premises", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Shared sauna", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Private fenced garden or backyard", "Dedicated workspace: desk and office chair", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Wifi \u2013 150 Mbps", "Cleaning products", "Washer", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Private hot tub", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "42\" HDTV with Amazon Prime Video, Netflix, standard cable", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Washer \u2013\u00a0In unit", "Hair dryer", "Cable TV", "Clothing storage: closet, dresser, and walk-in closet", "Board games", "Cleaning products", "Wifi", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Shower gel", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Portable heater", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Outlet covers", "Radiant heating", "Refrigerator", "55\" HDTV with Netflix, Amazon Prime Video, Chromecast", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Alexa in kitchen as well as speakers attached to tv sound system in the living room sound system with Bluetooth and aux", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Kitchen", "Laundromat nearby", "Table corner guards", "Fire extinguisher", "Coffee maker", "Private entrance", "Babysitter recommendations", "Baby monitor", "Shower gel", "Washer \u2013\u00a0In building", "Children\u2019s dinnerware", "Dishwasher", "Free driveway parking on premises", "Fireplace guards", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Bikes", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Fire extinguisher", "Shower gel", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Building staff", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets", "High chair"] 1 ["Essentials", "Kitchen", "Free parking on premises", "Shampoo", "Dryer", "Hair dryer", "Hangers", "TV", "First aid kit", "Fire extinguisher", "Dedicated workspace", "Hot tub", "Long term stays allowed", "Heating", "Air conditioning", "Wifi", "Iron", "Smoke alarm", "Washer", "Carbon monoxide alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Paid parking off premises", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Piano", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cleaning before checkout", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "46\" HDTV with standard cable", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Washer \u2013\u00a0In unit", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Beach essentials", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Free parking on premises", "Dedicated workspace", "Carbon monoxide alarm", "Hair dryer", "Indoor fireplace", "Long term stays allowed", "Iron", "Wifi", "Hangers", "Dryer", "First aid kit", "Essentials", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Patio or balcony", "Hair dryer", "Cable TV"] 1 ["Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Elevator", "Dedicated workspace", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Wifi", "Smart lock", "Hangers", "Dryer", "Kitchen", "Essentials", "Heating"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Kitchen", "Essentials", "Private entrance", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Paid dryer\u2013In unit", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Paid washer\u2013In unit", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Private entrance", "Bathtub"] 1 ["Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Dishwasher", "Fireplace guards", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Cleaning before checkout", "Single level home", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Paid dryer", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Paid washer", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Piano", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Sound system", "Dishwasher", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Samsung refrigerator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Samsung stainless steel oven", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Samsung induction stove", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Smoke alarm", "Smart lock"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Bathtub", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Paid parking on premises", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Ethernet connection", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Free parking on premises", "Shower gel", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Extra pillows and blankets", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Game console", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "Shower gel", "TV", "Children\u2019s dinnerware", "Pour-over coffee", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "Children\u2019s dinnerware", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "BBQ grill", "Hair dryer", "Smart lock", "Stainless steel gas stove", "Stainless steel oven", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Smoke alarm", "Kitchen", "Fire extinguisher", "Coffee maker", "HDTV with Netflix, Amazon Prime Video", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Toaster", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Pocket wifi", "Wine glasses", "Pour-over coffee"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Elevator", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "Baby monitor", "TV", "Dishwasher", "Changing table"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Hot water", "Patio or balcony", "Air conditioning", "Hair dryer"] 1 ["Free washer\u2013In building", "Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Barbecue utensils", "Free driveway parking on premises \u2013 3 spaces", "Hot water", "First aid kit", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "Clothing storage: walk-in closet, closet, and dresser", "Extra pillows and blankets", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Carbon monoxide alarm", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Kayak", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "Sound system", "Dishwasher", "Wine glasses", "Host greets you", "Free dryer\u2013In building"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Self check-in", "TV", "Dishwasher", "Free street parking", "Bedroom comforts", "Room-darkening shades", "Bathtub", "Hair dryer"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Bed linens", "Hot water", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Central heating", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Clothing storage: dresser, closet, and wardrobe", "Free driveway parking on premises \u2013 1 space", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Free dryer\u2013In unit", "Board games", "Nespresso machine", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "42\" HDTV with Netflix, Roku, Apple TV", "Dining table", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Pool", "BBQ grill", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Portable air conditioning", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Stainless steel stove"] 1 ["Iron", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Single level home", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Drying rack for clothing", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cleaning before checkout", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Laundromat nearby", "Private entrance", "Shower gel", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Long term stays allowed", "Hot water", "Free street parking", "Host greets you", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning"] 1 ["Kitchen", "Essentials", "Private entrance", "Fire extinguisher", "Stove", "Microwave", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Cooking basics", "Hot water", "First aid kit", "Lock on bedroom door", "Refrigerator", "Free street parking", "Luggage dropoff allowed", "Lockbox", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Elevator", "TV", "Hangers", "Smoke alarm"] 1 ["Free parking garage on premises \u2013 1 space", "Hot tub", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Portable air conditioning", "Dishes and silverware", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Hair dryer", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "Mini fridge", "Baking sheet", "Breakfast", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Bikes", "Portable fans", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Rice maker", "Pour-over coffee", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Board games", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Luggage dropoff allowed", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Indoor fireplace", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Lockbox"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Wifi", "Long term stays allowed", "TV", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Baby safety gates", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "TV", "Dishwasher", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Paid parking off premises", "Cable TV"] 1 ["Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning products", "Washer", "HDTV with Netflix, premium cable", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dedicated workspace", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Electric stove", "Babysitter recommendations", "Baby monitor", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Pour-over coffee", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Microwave", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Cooking basics", "Shower gel", "TV", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Patio or balcony"] 1 ["Essentials", "Iron", "Dishes and silverware", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Elevator", "Free parking on premises", "Refrigerator", "Dishwasher", "Hangers", "Smoke alarm", "Oven"] 1 ["Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Bread maker", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Board games", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Essentials", "Fire extinguisher", "Long term stays allowed", "Free parking on premises", "First aid kit", "Indoor fireplace", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Toaster", "Smoke alarm", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Private entrance", "Wine glasses", "Bathtub"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Carbon monoxide alarm", "TV", "Dishwasher", "Free street parking", "Bedroom comforts", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Keypad", "TV", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Babysitter recommendations", "TV", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Fireplace guards", "Host greets you", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Clothing storage: wardrobe", "Waterfront", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["LG stainless steel oven", "Iron", "Ethernet connection", "Dove conditioner", "Dryer", "Bed linens", "Clothing storage: walk-in closet and closet", "Cooking basics", "Hot water", "Dove body soap", "55\" HDTV", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Bikes", "Stainless steel electric stove", "Hangers", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Toaster", "LG refrigerator", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Electric stove", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Sauna", "Long term stays allowed", "Bikes", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Waterfront", "Pantene shampoo", "Hair dryer", "Paid parking off premises", "Gym", "Cleaning products", "Single level home", "Washer", "Dedicated workspace", "Dining table", "Wifi \u2013 300 Mbps", "Security cameras on property", "Toaster", "Beachfront", "Luggage dropoff allowed", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Pantene conditioner", "TV", "Dishwasher", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Dryer", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Mini fridge", "Baking sheet", "Essentials", "Dishes and silverware", "Body soap", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Marc Anthony shampoo", "Hangers", "Free street parking", "Gas stove", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Marc Anthony conditioner", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Waterfront", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Free washer\u2013In building", "Iron", "Central heating", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "32\" HDTV with standard cable", "Refrigerator", "Hangers", "Free dryer\u2013In building", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Cable TV", "Cleaning products", "Wifi", "Dining table", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door", "Rice maker", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Bose sound system", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "Children\u2019s dinnerware", "Pocket wifi", "Rice maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Breakfast", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Lockbox", "Hangers", "Free street parking", "Dryer \u2013 In building", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Washer \u2013\u00a0In building", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Stove", "Shampoo", "Coffee maker", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Refrigerator", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Oven", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Patio or balcony", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Sauna", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Pool", "Free street parking", "BBQ grill", "Waterfront", "Hair dryer", "Air conditioning", "Paid parking off premises", "Nespresso machine", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Outdoor furniture", "Shower gel", "TV", "Sound system", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "High chair"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance"] 1 ["Heating", "Essentials", "Iron", "Body soap", "Shampoo", "Fire extinguisher", "Wifi", "Conditioner", "TV", "Security cameras on property", "Hot water", "Portable fans", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV"] 1 ["Dryer", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Sauna", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Lake access", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Body soap", "Shampoo", "Microwave", "Stove", "Sauna", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Dining table", "Shared pool", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Wine glasses", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Microwave", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Keypad", "TV", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Patio or balcony"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Lake access", "Long term stays allowed", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Breakfast", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Lake access", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Cleaning products", "Carbon monoxide alarm", "Bathtub", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Clothing storage", "Coffee maker", "Dryer", "Dishwasher", "Dedicated workspace", "Freezer", "Body soap", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Oven"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Elevator", "Self check-in", "Hair dryer", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Bedroom comforts", "Air conditioning", "Paid parking off premises", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Dryer", "Washer", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Smoke alarm", "Elevator", "Gym", "Shampoo", "Hair dryer", "Long term stays allowed", "Wifi", "Kitchen", "Essentials", "Heating"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Wifi", "Dedicated workspace", "Long term stays allowed", "Elevator", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Game console", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "Paid parking on premises", "Hangers", "Pool", "Smoke alarm", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Outdoor dining area", "Central heating", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Free dryer\u2013In unit", "Board games", "Nespresso machine", "Single level home", "Cleaning products", "Shared outdoor pool", "Wifi", "Carbon monoxide alarm", "Dining table", "Toaster", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Crib", "Room-darkening shades", "Hot water kettle", "Kitchen", "Private entrance", "Children\u2019s books and toys for ages 0-2 years old, 2-5 years old, 5-10 years old, and 10+ years old", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "49\" HDTV with Amazon Prime Video, Netflix", "Dishwasher", "Fireplace guards", "Wine glasses"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Backyard", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Elevator", "Carbon monoxide alarm", "TV", "Full kitchen", "Dishwasher", "Bedroom comforts", "Hair dryer"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Stove", "Microwave", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Hot water", "First aid kit", "Hangers", "Refrigerator", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Pocket wifi", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Smoke alarm", "Smart lock", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Air conditioning"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Free parking on premises", "Shower gel", "TV", "Hangers", "Host greets you", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Breakfast", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Indoor fireplace", "Pool", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Cleaning products", "Wifi", "Conditioner", "Dining table", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Smart lock", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Oven"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher"] 1 ["Baking sheet", "Extra pillows and blankets", "Outlet covers", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Baby safety gates", "Bed linens", "Washer", "BBQ grill", "Children\u2019s books and toys", "Coffee maker", "Hair dryer", "Children\u2019s dinnerware", "Smart lock", "Dryer", "Dishwasher", "Crib", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Iron", "Changing table", "Pack \u2019n Play/travel crib", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Ethernet connection", "Bed linens", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "TV", "Rice maker"] 1 ["Private entrance", "Keurig coffee machine", "Lockbox", "Shower gel", "Shampoo", "Iron", "Stove", "Bed linens", "Oven", "Microwave", "Smoke alarm", "Hot water kettle", "Hangers", "Dedicated workspace", "Coffee maker", "Refrigerator", "Single level home", "Heating", "First aid kit", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "Cooking basics", "Toaster", "Essentials", "Freezer", "TV", "Free street parking", "Long term stays allowed", "Carbon monoxide alarm", "Dishes and silverware", "Mini fridge", "Pour-over coffee", "Kitchen", "Wine glasses", "Patio or balcony"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Paid street parking off premises \u2013 CAD2 per hour", "Lockbox", "Hair dryer", "Single level home", "Cleaning products", "kirkland conditioner", "Washer", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises \u2013 CAD100 per stay, 1 space", "kirkland body soap", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Heating", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Ethernet connection", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Microwave", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Patio or balcony", "Hair dryer", "Smart lock", "Backyard"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Long term stays allowed", "Dryer", "Wifi", "Stove", "Washer", "Kitchen", "Hot water", "Oven", "TV", "Microwave", "Heating", "Smoke alarm"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Bathtub"] 1 ["EV charger", "Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Shared pool", "Luggage dropoff allowed", "Safe", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Clothing storage: wardrobe", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "TV with Roku"] 1 ["Iron", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dedicated workspace: office chair and desk", "Blomberg refrigerator", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Blomberg stainless steel oven", "Stove", "Long term stays allowed", "Portable fans", "Lockbox", "Hangers", "Free dryer\u2013In building", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "42\" HDTV with Netflix", "Dining table", "Security cameras on property", "Toaster", "Smoke alarm", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Private entrance", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Hangers", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Laundromat nearby", "Cleaning products", "Extra pillows and blankets", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Hangers", "Essentials", "Heating", "Dining table", "Hot water kettle", "Coffee maker", "Hair dryer", "TV with standard cable", "First aid kit", "Backyard", "Clothing storage: walk-in closet and dresser", "Free parking on premises", "Dedicated workspace", "Free street parking", "Body soap", "Cooking basics", "Long term stays allowed", "Drying rack for clothing", "Iron", "Outdoor dining area", "Hot water", "Smoke alarm", "Private entrance", "Shampoo", "Dishes and silverware", "Mini fridge", "Toaster", "Wifi", "Keypad", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Kitchen", "Essentials", "Private entrance", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Lockbox", "Hangers", "Indoor fireplace", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Hot water", "Stove", "Dining table", "Cooking basics", "Hair dryer", "Hangers", "First aid kit", "Private entrance", "Dishwasher", "Drying rack for clothing", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Long term stays allowed", "Heating", "Indoor fireplace", "Oven", "Kitchen", "Free parking on premises", "TV", "BBQ grill", "Dedicated workspace", "Patio or balcony", "Cleaning products", "Smart lock", "Refrigerator", "Baking sheet", "Fire extinguisher", "Microwave", "Essentials", "Dryer", "Freezer", "Hot water kettle", "Toaster", "Wifi", "Dishes and silverware", "Washer"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Free parking on premises \u2013 1 space", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Nespresso machine", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["EV charger", "Iron", "Piano", "Free parking garage on premises \u2013 1 space", "Hot tub", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Miele stainless steel electric stove", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Kitchen", "Private entrance", "Fire extinguisher", "Miele stainless steel oven", "Meile refrigerator", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Nespresso machine", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Heating", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Waterfront", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Board games", "Single level home", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Rice maker", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Cable TV", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Lockbox", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Long term stays allowed", "Host greets you", "Security cameras on property"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Dishwasher", "Bathtub"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Wifi", "Dedicated workspace", "Long term stays allowed", "Elevator", "TV", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm"] 1 ["Dryer", "Cooking basics", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Refrigerator", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Cooking basics", "TV", "Hot water", "Refrigerator", "Hangers", "Indoor fireplace", "Host greets you", "Air conditioning", "Extra pillows and blankets", "Hair dryer"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Patio or balcony", "Private fenced garden or backyard", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Outdoor furniture"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "TV", "First aid kit", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Extra pillows and blankets"] 1 ["Clothing storage: closet", "Extra pillows and blankets", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Paid parking garage on premises", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Hot water kettle", "Air conditioning", "Coffee maker", "Keurig coffee machine", "Pool", "Hair dryer", "Smart lock", "Dryer", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Sauna", "Dedicated workspace", "Free street parking", "Portable fans", "Freezer", "Room-darkening shades", "Body soap", "Cooking basics", "Ethernet connection", "Drying rack for clothing", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Microwave", "Shampoo", "Paid parking garage off premises", "Conditioner", "Trash compactor", "Dishes and silverware", "Wifi", "Toaster", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Bathtub", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Baby safety gates", "Washer", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Children\u2019s dinnerware", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Dishes and silverware", "Wifi", "Kitchen", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Fire extinguisher", "Ethernet connection", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Shampoo", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Hot tub", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Freezer", "Essentials", "Clothing storage", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Hot tub", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Board games", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Baby bath", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Babysitter recommendations", "Baby monitor", "Shower gel", "Children\u2019s dinnerware", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Gym", "Building staff", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "TV", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "First aid kit", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Fire extinguisher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Extra pillows and blankets", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Ceiling fan"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Wifi \u2013 75 Mbps", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dedicated workspace: office chair, desk, table, and monitor", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Board games", "Cleaning products", "Washer", "Bidet", "Conditioner", "Dining table", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "55\" HDTV with Chromecast, Netflix, Roku", "Shower gel", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Hot tub", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "HDTV with Netflix, premium cable, standard cable", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Wifi", "Long term stays allowed", "Free parking on premises", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Cooking basics", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Dining table", "Toaster", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Private entrance", "Outdoor furniture", "Pocket wifi", "Dishwasher", "Rice maker", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Pocket wifi", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Pool", "Hair dryer", "Dryer", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Game console", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Hot tub", "Oven", "Cable TV"] 1 ["EV charger", "Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Wifi", "Long term stays allowed", "Elevator", "Keypad", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Coffee maker"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "Hot water", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Backyard", "Single level home", "Wifi", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Shower gel"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Smart lock", "Cleaning products", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Paid parking lot on premises \u2013 CAD7 per day, 1 space", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Microwave", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Building staff", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Security cameras on property", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Ethernet connection", "Bed linens", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hair dryer", "Backyard", "Cable TV", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Microwave", "Dryer", "Washer", "Wifi", "Dedicated workspace", "TV", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Patio or balcony", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Sauna", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Board games", "Single level home", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Pool", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Kitchen", "Heating", "Washer", "Long term stays allowed", "Wifi"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Pocket wifi", "Sound system", "Dishwasher", "Pour-over coffee", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Lockbox", "First aid kit", "Hangers", "Smoke alarm", "Bathtub", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Private entrance", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Hair dryer", "Air conditioning", "Cleaning before checkout", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Free street parking", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Elevator", "TV", "Free parking on premises", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Pocket wifi", "Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Dryer", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Oven", "Cable TV"] 1 ["Kitchen", "Body soap", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Bed linens", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Wifi", "Long term stays allowed", "TV"] 1 ["Iron", "Hot tub", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "2 burner convection oven stove top stove", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Rice maker"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Security cameras on property", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Central air conditioning", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Rice maker", "Wine glasses", "Bathtub", "High chair"] 1 ["Hot tub", "Dryer", "Cooking basics", "Indoor fireplace", "Drying rack for clothing", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cleaning before checkout", "Gym", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Dedicated workspace", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Sound system", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Essentials", "Body soap", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Bed linens", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Hot water", "Hair dryer", "Hangers", "First aid kit", "Private entrance", "Iron", "Smoke alarm", "Long term stays allowed", "Heating", "Indoor fireplace", "Kitchen", "Elevator", "Free parking on premises", "Shampoo", "TV", "Dedicated workspace", "Lockbox", "Fire extinguisher", "Hot tub", "Paid parking off premises", "Essentials", "Dryer", "Wifi", "Washer"] 1 ["Heating", "Essentials", "Kitchen", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "TV", "Hot water", "First aid kit", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Dedicated workspace", "Long term stays allowed", "Cooking basics", "First aid kit", "Hangers", "Pool"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Sound system", "Dishwasher", "Bathtub", "Ceiling fan"] 1 ["Dryer", "Cooking basics", "Keurig coffee machine", "First aid kit", "Essentials", "Portable air conditioning", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Private entrance", "TV"] 1 ["Smoke alarm", "Washer", "TV", "Carbon monoxide alarm", "Long term stays allowed", "Wifi", "Kitchen", "Dryer", "Heating", "Hot water"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Kitchen", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Sound system", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Toaster", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Stove", "Microwave", "Dishes and silverware", "Wifi", "Bed linens", "Cooking basics", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Host greets you", "Patio or balcony", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Indoor fireplace", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Cable TV", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Rice maker", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Private entrance", "Microwave", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "TV", "First aid kit", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Clothing storage", "Bread maker", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Pool", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Wifi", "Carbon monoxide alarm", "Self check-in", "TV", "Indoor fireplace", "Kitchenette", "Free street parking", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard"] 1 ["Iron", "Ethernet connection", "Wifi \u2013 100 Mbps", "Bed linens", "Cooking basics", "Keurig coffee machine", "Kirkland Organic 100% Eco-Friendly Made in Canada shampoo", "Hot water", "First aid kit", "Baking sheet", "Aveeno Organic 100% Eco-Friendly Made in Canada body soap", "Patio or balcony", "55\" HDTV with Amazon Prime Video, Netflix, Apple TV", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Whirlpool stainless steel oven", "Microwave", "Long term stays allowed", "Radiant heating", "Portable fans", "Shared hot tub", "Hangers", "Paid street parking off premises \u2013 CAD2 per hour", "Free street parking", "Lockbox", "Hair dryer", "Free dryer\u2013In unit", "Whirlpool stainless steel electric stove", "Gym", "Cleaning products", "Single level home", "Dedicated workspace", "Whirlpool refrigerator", "Carbon monoxide alarm", "Dining table", "Security cameras on property", "Toaster", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Kirkland Organic 100% Eco-Friendly Made in Canada conditioner", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Shared indoor lap pool", "Babysitter recommendations", "Shower gel", "Paid parking lot on premises \u2013 CAD20 per day, 15 spaces", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher"] 1 ["Heating", "Kitchen", "Piano", "Stove", "Microwave", "Gym", "Wifi", "Long term stays allowed", "Dryer \u2013\u00a0In unit", "Freezer", "TV", "Hot water", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Smoke alarm", "Patio or balcony", "Oven", "Air conditioning"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Pocket wifi", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Hot water", "Essentials", "Kitchen", "Free parking on premises", "Hangers", "Heating", "Wifi"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Nespresso machine", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Wine glasses"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Washer", "Air conditioning", "Hair dryer", "Smart lock", "Dryer", "First aid kit", "Free parking on premises", "Dedicated workspace", "Indoor fireplace", "Long term stays allowed", "Iron", "Hot water", "Smoke alarm", "TV", "Shampoo", "Security cameras on property", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Pool", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Kitchen", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Pour-over coffee", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Portable fans", "Freezer", "Body soap", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Breakfast", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Frigidaire electric stove", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Frigidaire refrigerator", "Frigidaire oven", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Free parking on premises", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Bread maker", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Free parking on premises", "Long term stays allowed", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking garage off premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Building staff", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Paid parking off premises", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Shared pool", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Varied body soap", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "varied conditioner", "Shower gel", "TV", "Pocket wifi", "Lock on bedroom door", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Single level home", "Wifi", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Paid parking on premises", "Hot water", "Hangers", "Free street parking", "Breakfast", "Smoke alarm", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Ethernet connection", "Microwave", "Wifi", "Dedicated workspace", "Free parking on premises", "Shower gel", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Smoke alarm", "Air conditioning", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Outdoor dining area", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "Mini fridge", "Baking sheet", "Dedicated workspace: monitor, desk, table, and office chair", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Pool table", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Private garden or backyard", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Dishwasher", "Samsung Bluetooth sound system", "Rice maker", "Wine glasses", "Game console: PS3", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Indoor fireplace", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Bedroom comforts", "Room-darkening shades", "Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Iron", "Wifi", "Long term stays allowed", "Free parking on premises", "TV", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Dove body soap", "Baking sheet", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Toaster oven only oven", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Outlet covers", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Two burner only stove top induction stove", "Board games", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Sound system", "Rice maker", "Wine glasses", "60\" HDTV with Amazon Prime Video, Netflix", "Extra pillows and blankets", "mini fridge with feezer refrigerator"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Essentials", "Body soap", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Dryer", "Washer", "Long term stays allowed", "Free parking on premises", "TV", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Rice maker"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Changing table", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Lock on bedroom door"] 1 ["Smoke alarm", "Washer", "Free street parking", "Heating", "Shampoo", "Cable TV", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Dishes and silverware", "Wifi", "Kitchen", "Dryer", "Fire extinguisher", "Essentials", "TV with standard cable", "Host greets you", "Paid parking on premises", "Lock on bedroom door", "Hot water"] 1 ["Iron", "Dryer", "Elevator", "Self check-in", "Indoor fireplace", "Pets allowed", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Nespresso machine", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Ethernet connection", "Wifi \u2013 100 Mbps", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Bosch stainless steel electric stove", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Blomberg refrigerator", "Dishes and silverware", "Bosch stainless steel oven", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "BBQ grill", "Paid parking off premises", "Nespresso machine", "Gym", "Single level home", "Washer", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Pour-over coffee", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "TV", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pool", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Gas stove", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ski-in/Ski-out", "TV", "Dishwasher", "Lock on bedroom door", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Ceiling fan"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Children\u2019s books and toys for ages 2-5 years old", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Conditioner", "Dining table", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Coffee maker", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Waterfront", "Hair dryer"] 1 ["Smoke alarm", "Washer", "Free parking on premises", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Wifi", "Kitchen", "Dryer", "Heating", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Indoor fireplace", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Bedroom comforts", "Room-darkening shades", "Smoke alarm", "Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Bed linens", "Long term stays allowed", "Cleaning before checkout", "TV", "Hot water", "Hangers", "Extra pillows and blankets", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hot water", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Patio or balcony", "Hair dryer", "Backyard"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Bikes", "TV with standard cable", "Boat slip", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Fire pit", "Toaster", "Luggage dropoff allowed", "Safe", "Crib", "Smoke alarm", "Kayak", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Wine glasses", "Shared sauna", "High chair"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Teenage Engineering X Ikea Frekvens 4x8 \"Bluetooth Speaker Bluetooth sound system", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "46\" HDTV with Chromecast", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Children\u2019s books and toys for ages 2-5 years old, 5-10 years old, and 10+ years old", "Coffee maker", "Shower gel", "Rice maker", "Fireplace guards", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Free parking on premises", "Elevator", "Carbon monoxide alarm", "TV", "Full kitchen", "Bathtub", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["EV charger", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Dryer", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Building staff", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Cable TV", "Wifi", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Smoke alarm", "TV", "Bedroom comforts", "Coffee maker", "Self check-in", "Bathroom essentials", "Carbon monoxide alarm", "Hair dryer", "Wifi", "Iron", "Kitchenette"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Cable TV"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Hair dryer", "Hangers", "First aid kit", "Private entrance", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Heating", "Indoor fireplace", "Kitchen", "Free parking on premises", "Shampoo", "Pool", "TV", "Dedicated workspace", "Gym", "Fire extinguisher", "Hot tub", "Essentials", "Dryer", "Wifi", "Washer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Nespresso machine", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Sound system", "Dishwasher", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Wifi", "Long term stays allowed", "Free parking on premises", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Hangers", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Smoke alarm", "Cable TV"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Elevator", "Self check-in", "Carbon monoxide alarm", "TV", "Full kitchen", "Bedroom comforts", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "Hot water", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Stove", "Gym", "Washer", "Wifi", "Long term stays allowed", "Elevator", "TV", "Hot water", "Refrigerator", "Dishwasher", "Smoke alarm", "Oven", "Cable TV"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Self check-in", "TV", "Full kitchen", "Dishwasher", "Free street parking", "Bedroom comforts", "Bathtub", "Hair dryer", "Backyard"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Pool", "Hair dryer", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Stainless steel oven", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "BBQ grill", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Freezer", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Stainless steel gas stove", "Cable TV"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Shampoo", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Cleaning products", "Washer", "Wifi", "Conditioner", "Dining table", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Paid parking on premises", "Bed linens", "Washer", "Elevator", "Coffee maker", "Waterfront", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Ethernet connection", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Beachfront", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Bathtub", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Outlet covers", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Babysitter recommendations", "Children\u2019s dinnerware", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Wine glasses", "Pour-over coffee", "Bathtub"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Shared pool", "Smoke alarm", "Heating", "Kitchen", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Outdoor dining area", "Ethernet connection", "Smart tv sound system with Bluetooth and aux", "with crisper and freezer compartments refrigerator", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Portable air conditioning", "Dishes and silverware", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Portable fans", "Hangers", "Ivory body soap", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Free dryer\u2013In unit", "HDTV with Netflix", "Backyard", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Fire pit", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Outdoor furniture", "Beach essentials", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Shower gel", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Paid parking garage off premises", "Essentials", "Portable air conditioning", "Dishes and silverware", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Kitchen", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Baking sheet", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "EV charger", "Bed linens", "Washer", "Elevator", "Coffee maker", "Dryer", "First aid kit", "Dishwasher", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Gym", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Bread maker", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Free washer\u2013In building", "Iron", "Piano", "Ethernet connection", "Outdoor dining area", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Dedicated workspace: desk and office chair", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Long term stays allowed", "Shared gym nearby", "Refrigerator", "Hangers", "Pool", "Free street parking", "Gas stove", "Hair dryer", "Cable TV", "Board games", "Nespresso machine", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "42\" HDTV with Netflix", "Dining table", "Toaster", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Pocket wifi", "Lock on bedroom door", "Wine glasses", "Pour-over coffee", "Host greets you", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Air conditioning", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ceiling fan", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Clothing storage: dresser, wardrobe, and closet", "Organic conditioner", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Game console: PS4 and Xbox 360", "Patio or balcony", "Freezer", "Dedicated workspace: desk and office chair", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Toaster", "Beachfront", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Organic shampoo", "Hot water kettle", "Heating", "Kitchen", "Induction stove", "Fire extinguisher", "Coffee maker", "Laundromat nearby", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Sound system", "Dishwasher", "Wine glasses", "Pour-over coffee", "Organic body soap", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Security cameras on property", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Bathtub"] 1 ["EV charger", "Iron", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Toaster", "Safe", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "TV with standard cable", "Wifi", "Elevator", "Long term stays allowed", "Pool", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Security cameras on property", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pour-over coffee"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Dedicated workspace: desk", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "HDTV with Amazon Prime Video, Netflix", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Free parking on premises \u2013 1 space", "BBQ grill", "Hair dryer", "Backyard", "Stainless steel gas stove", "Single level home", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Bathtub"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door", "Wine glasses", "Pour-over coffee", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Bathtub", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Microwave", "Coffee maker", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "Hot water", "Dishwasher", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking garage off premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "TV", "Bathtub"] 1 ["Kitchen", "Essentials", "Dryer", "Wifi", "Washer", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Board games", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Fire pit", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Outdoor furniture", "Ceiling fan", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Lockbox", "Hangers", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Paid dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Paid washer", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "AEG stainless steel oven", "Microwave", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "AEG stainless steel gas stove", "Dining table", "Free parking on premises", "Toaster", "Free washer\u2013In unit", "LG refrigerator", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Host greets you", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Stove", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Long term stays allowed", "Hot water", "Refrigerator", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Oven"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Drying rack for clothing", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Free dryer\u2013In unit", "Single level home", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Private garden or backyard", "Free parking on premises", "Security cameras on property", "Keypad", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "Outdoor furniture", "HDTV with Apple TV, Netflix", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Pour-over coffee", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Bed linens", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Building staff", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Cable TV", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Free driveway parking on premises \u2013 1 space", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Bluetooth sound system", "Window guards", "Frigidaire - conventional stainless steel induction stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Free dryer\u2013In unit", "Nespresso machine", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Security cameras on property", "Toaster", "Free washer\u2013In unit", "HDTV with Roku, Netflix", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Ceiling fan", "Shower gel", "Rice maker", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Kitchen", "Body soap", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Bed linens", "Free parking on premises", "Long term stays allowed", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Kitchen", "Essentials", "Gym", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Elevator", "Free parking on premises", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Paid washer\u2013In building", "Hangers", "Hair dryer", "Air conditioning", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Crib", "Paid dryer\u2013In building", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "TV", "Lock on bedroom door", "Induction stove", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Elevator", "Coffee maker", "Hair dryer", "Dishwasher", "Free parking on premises", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hangers", "Smoke alarm", "Paid parking off premises"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Private entrance", "Coffee maker", "Microwave", "Wifi", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "High chair"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "TV with standard cable", "Dishwasher", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Hair dryer", "Hangers", "First aid kit", "Coffee maker", "Private entrance", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Long term stays allowed", "Heating", "Indoor fireplace", "Kitchen", "Free parking on premises", "Shampoo", "TV", "Dedicated workspace", "Fire extinguisher", "Essentials", "Dryer", "Air conditioning", "Wifi", "Washer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Baking sheet", "Breakfast", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Breville toaster oven stainless steel oven", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Dryer \u2013\u00a0In unit", "Laundromat nearby", "Baking sheet", "Clothing storage: closet", "Cleaning products", "Extra pillows and blankets", "Central heating", "Wine glasses", "Frigidaire stainless steel electric stove", "Pour-over coffee", "Luggage dropoff allowed", "locally made by Howe Sound Soapworks body soap", "Hangers", "Essentials", "Frigidaire stainless steel oven", "Dining table", "Bed linens", "BBQ grill", "Hot water kettle", "Coffee maker", "43\" HDTV with standard cable", "Hair dryer", "Host greets you", "First aid kit", "Dishwasher", "Dedicated workspace", "Portable fans", "Freezer", "Cooking basics", "Long term stays allowed", "Iron", "Sonos Beam Bluetooth sound system", "Frigidaire refrigerator", "Barbecue utensils", "Outdoor dining area", "Hot water", "Washer \u2013\u00a0In unit", "Smoke alarm", "Shower gel", "Microwave", "Shampoo", "Conditioner", "Security cameras on property", "Dishes and silverware", "Wifi", "Toaster", "Paid street parking off premises", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Cable TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "Pocket wifi", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ceiling fan", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "First aid kit", "Hangers", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Private entrance", "Keypad", "Iron", "Shampoo", "mini refrigerator", "Portable fans", "Wifi \u2013 50 Mbps", "Bed linens", "Smoke alarm", "Radiant heating", "Microwave", "Laundromat nearby", "Hot water kettle", "Hangers", "Dedicated workspace", "Body soap", "Coffee maker", "Fire extinguisher", "First aid kit", "Hair dryer", "Luggage dropoff allowed", "Hot water", "Extra pillows and blankets", "Toaster", "Essentials", "Carbon monoxide alarm", "Conditioner", "Dishes and silverware", "Mini fridge", "Clothing storage: closet", "Cleaning products"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Kitchen", "Dishes and silverware", "Stove", "Lake access", "Long term stays allowed", "Cooking basics", "Refrigerator", "Cleaning before checkout"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Dishes and silverware", "Stove", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Oven", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Outlet covers", "Game console", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Waterfront", "Backyard", "Paid parking off premises", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Mosquito net", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Lock on bedroom door", "Rice maker", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Varies, but usually Nexxus conditioner", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Paid parking lot on premises \u2013 CAD20 per day, 1 space", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Porter&Charles oven", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "I have a series of bluetooth speakers. Bluetooth sound system", "Dedicated workspace", "Smoke alarm", "Varies, but usually Dr. Bronners. I also have Le Labo from Fairmont body soap", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Liebherr refrigerator", "Dishwasher", "Rice maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Bathtub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Backyard"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Private entrance", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hangers", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "HDTV with Apple TV", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Free dryer\u2013In unit", "Cleaning products", "Carbon monoxide alarm", "Conditioner", "Dining table", "Wifi \u2013 300 Mbps", "Free parking on premises", "Security cameras on property", "Toaster", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Kitchen", "Laundromat nearby", "Outdoor furniture", "Shower gel", "Lock on bedroom door", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Hot water", "Hangers", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Piano", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Record player", "Single level home", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Sound system", "Pour-over coffee", "Host greets you", "Bathtub", "Ceiling fan"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Bathtub", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Trash compactor", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Waterfront", "Backyard", "Cleaning before checkout", "Nespresso machine", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Rice maker", "Fireplace guards", "Dishwasher", "Pour-over coffee", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Outlet covers", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Refrigerator", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Stove", "Bed linens", "Oven", "Hangers", "Dedicated workspace", "Refrigerator", "Heating", "Cable TV", "Hair dryer", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Dryer", "Dishes and silverware", "Kitchen", "Patio or balcony"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Smart lock", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Sound system", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Waterfront", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Clothing storage: dresser, wardrobe, and closet", "Bed linens", "Cooking basics", "Wifi \u2013 350 Mbps", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "55\" HDTV with Amazon Prime Video, Netflix", "Patio or balcony", "Freezer", "Dedicated workspace: desk and office chair", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Technics sound system with aux", "Portable fans", "Refrigerator", "Hangers", "Shared hot tub", "Hair dryer", "Cleaning before checkout", "Free dryer\u2013In unit", "Gym", "Cleaning products", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Shared outdoor rooftop pool", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Jergens body soap", "Bathtub", "Extra pillows and blankets", "Shared sauna"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Waterfront", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Air conditioning", "Dedicated workspace", "Elevator", "Gym", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Kitchen", "Dryer", "Essentials", "Heating"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "TV with standard cable", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Kitchen", "Fire extinguisher", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Bread maker", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Waterfront", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Hot water", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Keypad", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Baking sheet", "Extra pillows and blankets", "Carbon monoxide alarm", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Bed linens", "Elevator", "Coffee maker", "Waterfront", "Pool", "Hair dryer", "Host greets you", "TV with standard cable", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Barbecue utensils", "Hot water", "Smoke alarm", "Private entrance", "Shower gel", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Host greets you", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Dishwasher"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Wifi", "TV", "Security cameras on property", "Hangers", "Lock on bedroom door", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Changing table", "High chair"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Game console", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Waterfront", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Radiant heating", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "BBQ grill", "Hair dryer", "Free dryer\u2013In unit", "Stainless steel gas stove", "Stainless steel oven", "Wifi", "Carbon monoxide alarm", "Dining table", "Keypad", "Mosquito net", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Kitchen", "Private entrance", "Coffee maker", "Dedicated workspace: table", "HDTV with Apple TV, Netflix", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "Elevator", "Hot water", "Smoke alarm"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Bed linens", "Keurig coffee machine", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Portable fans", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Board games", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Clothing storage: wardrobe and closet", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Ping pong table", "Shower gel", "TV", "Sound system", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Essentials", "Iron", "Fire extinguisher", "Shampoo", "Nespresso machine", "Building staff", "Wifi", "Paid parking lot on premises \u2013 8 spaces", "Paid parking garage off premises", "TV", "Hot water", "First aid kit", "Hangers", "Luggage dropoff allowed", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Shower gel", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Coffee maker", "Waterfront", "Hair dryer", "Host greets you", "Dryer", "Dishwasher", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Shampoo", "Dishes and silverware", "Beachfront", "Wifi", "Single level home", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["HDTV with Apple TV", "Hot water", "Stove", "Cooking basics", "Hair dryer", "Hangers", "Coffee maker", "Private entrance", "Dishwasher", "Conditioner", "Iron", "Smoke alarm", "Carbon monoxide alarm", "Free parking garage on premises", "Long term stays allowed", "Heating", "Body soap", "Oven", "Kitchen", "Backyard", "Shampoo", "Patio or balcony", "Dedicated workspace", "Refrigerator", "Gym", "Fire extinguisher", "Host greets you", "Microwave", "Essentials", "Dryer", "Freezer", "Shower gel", "Bed linens", "Wifi", "Dishes and silverware", "Washer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Keypad", "Baby bath", "Smoke alarm", "Crib", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Fireplace guards", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Cooking basics", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Waterfront", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Hot tub", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Gym", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Keurig coffee machine", "Hot water", "First aid kit", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Shampoo", "Microwave", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Shower gel"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Bluetooth sound system", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "HDTV with Chromecast", "Hair dryer", "Record player", "Backyard", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Induction stove", "Fire extinguisher", "Coffee maker", "Private entrance", "Dishwasher", "Pour-over coffee"] 1 ["Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "TV", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "55\" HDTV with Netflix", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "TV with Netflix", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Gas stove", "Bose Bluetooth sound system", "Hair dryer", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Wine glasses", "Bathtub", "Clothing storage: dresser and closet"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Private entrance", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "TV", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Private entrance", "Hot tub", "Long term stays allowed", "Hot water", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Air conditioning", "Coffee maker", "Waterfront", "Hair dryer", "Dryer", "Dishwasher", "Backyard", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Beachfront", "Wifi", "Patio or balcony", "Kitchen", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Coffee maker", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Cleaning products", "Wifi", "Free parking on premises", "Dining table", "Toaster", "Safe", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Host greets you"] 1 ["Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Boat slip", "Paid parking lot on premises \u2013 CAD30 per day", "Portable fans", "Refrigerator", "Lockbox", "Extra pillows and blankets", "Waterfront", "Air conditioning", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Sound system", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Cooking basics", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Bed linens", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Free street parking", "Air conditioning", "Backyard", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "BBQ grill", "Coffee maker", "Hair dryer", "First aid kit", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Pocket wifi", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Coffee maker", "Hair dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Sound system", "Dishwasher", "Host greets you", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer \u2013 In building", "Wifi", "Long term stays allowed", "Elevator", "Washer \u2013\u00a0In building", "TV", "Hangers", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Wifi", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Dishes and silverware", "Body soap", "Microwave", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Cleaning products", "Stainless steel oven", "Washer", "HDTV with Roku", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Clothing storage: walk-in closet", "Dishwasher", "Wine glasses", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Long term stays allowed", "Hot water", "First aid kit", "Lock on bedroom door", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Smoke alarm", "Washer", "TV", "Free parking on premises", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Keypad", "Iron", "Wifi", "Hangers", "Kitchen", "First aid kit", "Essentials", "Heating", "Fire extinguisher", "Lock on bedroom door", "Hot water"] 1 ["EV charger", "Iron", "Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Free driveway parking on premises \u2013 1 space", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Wine glasses", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Lock on bedroom door"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Baby safety gates", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Hangers", "Beachfront", "Smoke alarm"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Smoke alarm", "Free parking on premises", "TV", "Bedroom comforts", "Coffee maker", "Free street parking", "Self check-in", "Bathroom essentials", "Carbon monoxide alarm", "Hair dryer", "Wifi", "Iron", "Kitchen", "Fire extinguisher", "Heating", "Backyard"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Rice maker", "Pour-over coffee"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "TV", "Security cameras on property", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "55\" HDTV", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Paid washer\u2013In building", "Refrigerator", "Hangers", "Pool", "Cleaning products", "Stainless steel oven", "Wifi", "Dedicated workspace", "Smoke alarm", "Paid dryer\u2013In building", "Heating", "Kitchen", "Coffee maker", "Electric stove", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Smart lock", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Security cameras on property", "Hot water", "Lock on bedroom door", "Smoke alarm", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Free washer\u2013In building", "Iron", "Piano", "Ethernet connection", "Outdoor dining area", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "First aid kit", "Indoor fireplace", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Trash compactor", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Extra pillows and blankets", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Backyard", "Smart lock", "Cleaning before checkout", "Board games", "Gym", "Cleaning products", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Security cameras on property", "Mosquito net", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Free dryer\u2013In building"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Outdoor dining area", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cleaning products", "Dedicated workspace", "Conditioner", "Free parking on premises", "Wifi \u2013 300 Mbps", "Keypad", "Security cameras on property", "Toaster", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer", "Paid parking off premises"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "TV with standard cable", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Gym", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Shower gel"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Children\u2019s dinnerware", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Crib", "Free parking on premises", "Dedicated workspace", "Free street parking", "Babysitter recommendations", "Cooking basics", "Ethernet connection", "Indoor fireplace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Microwave", "Dishes and silverware", "Wifi", "Long term stays allowed", "Elevator", "Cooking basics", "TV", "Refrigerator", "Lockbox", "Hangers", "Patio or balcony", "Oven"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Dedicated workspace: desk and office chair", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Cleaning products", "Wifi", "Free washer\u2013In unit", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Dishwasher", "Clothing storage: walk-in closet and dresser", "Wine glasses", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Dishwasher", "Extra pillows and blankets"] 1 ["Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Air conditioning", "Coffee maker", "Hair dryer", "TV with standard cable", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Cable TV"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Stove", "Microwave", "Dishes and silverware", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Hot water", "Refrigerator", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you"] 1 ["Heating", "Essentials", "Shampoo", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Breakfast", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Shampoo", "Stove", "Bed linens", "Pool", "Fireplace guards", "Oven", "Dishwasher", "Smoke alarm", "Microwave", "Hangers", "Dedicated workspace", "Hot tub", "Children\u2019s books and toys", "Coffee maker", "Fire extinguisher", "Refrigerator", "Single level home", "Heating", "Cable TV", "Elevator", "Indoor fireplace", "Hair dryer", "Gym", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Host greets you", "Essentials", "Long term stays allowed", "Free street parking", "Carbon monoxide alarm", "Dryer", "Ethernet connection", "Dishes and silverware", "Kitchen", "Room-darkening shades", "Free parking on premises", "Patio or balcony", "Bathtub"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Heating", "Kitchen", "Private entrance", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Portable fans", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Nespresso machine", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher", "Wine glasses", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Table corner guards", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Wifi", "Long term stays allowed", "Elevator", "TV", "Hot water", "Lockbox", "Smoke alarm", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking garage off premises", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Free parking garage on premises \u2013 1 space", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Stainless steel electric stove", "Game console", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Backyard", "Smart lock", "Nespresso machine", "Gym", "Stainless steel oven", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Shared pool", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Baby bath", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Rice maker", "Bathtub"] 1 ["Dryer", "Bed linens", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Washer", "Wifi", "Carbon monoxide alarm", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Shower gel", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Long term stays allowed", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Dove body soap", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Wifi", "Dedicated workspace", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher"] 1 ["Kitchen", "Essentials", "Shampoo", "Washer", "Wifi", "Long term stays allowed", "Elevator", "Hot water", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Bluetooth sound system", "HDTV", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Washer \u2013\u00a0In unit", "Hair dryer", "Air conditioning", "Cable TV", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Rice maker", "Host greets you", "Bathtub"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "First aid kit", "Indoor fireplace", "Pool", "Smoke alarm"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Bed linens", "Long term stays allowed", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Pocket wifi", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hot water", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Children\u2019s books and toys", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Private entrance", "Free washer\u2013In unit", "Ceiling fan", "Central heating", "42\" TV with Netflix, premium cable, standard cable", "Shower gel", "Shampoo", "Iron", "Keypad", "BBQ grill", "Bed linens", "Dishwasher", "Smoke alarm", "Microwave", "Hangers", "Dedicated workspace", "Outdoor furniture", "Children\u2019s dinnerware", "Body soap", "Coffee maker", "Fire extinguisher", "Refrigerator", "Cable TV", "First aid kit", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Outdoor dining area", "Hot water", "Cooking basics", "Extra pillows and blankets", "Toaster", "Essentials", "Freezer", "Long term stays allowed", "Free street parking", "Conditioner", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Barbecue utensils", "Wine glasses", "Kitchen", "Clothing storage: wardrobe", "Cleaning products", "Patio or balcony", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Patio or balcony", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Rice maker", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Crib", "Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Waterfront", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Building staff", "Wifi", "Long term stays allowed", "Hot water", "Lock on bedroom door"] 1 ["Iron", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Essentials", "Iron", "Dishes and silverware", "Shampoo", "Microwave", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Cleaning products", "Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Washer", "Clothing storage", "Hot water kettle", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Conditioner", "Dishes and silverware", "Toaster", "Wifi", "Kitchen", "Oven"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Host greets you"] 1 ["Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Stove", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Dryer", "Washer", "TV with standard cable", "Wifi", "Cooking basics", "Free parking on premises", "Long term stays allowed", "Hot water", "Smoke alarm", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "First aid kit", "Smoke alarm", "Cable TV"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Wifi", "Outlet covers", "Free parking on premises", "Self check-in", "Carbon monoxide alarm", "TV", "Full kitchen", "Bathtub", "Dishwasher", "Indoor fireplace", "Free street parking", "Bedroom comforts", "Pack \u2019n Play/travel crib", "Hair dryer"] 1 ["Smoke alarm", "Washer", "TV", "Private entrance", "Free parking on premises", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Iron", "Wifi", "Breakfast", "Hangers", "Dryer", "First aid kit", "Essentials", "Heating", "Kitchen", "Fire extinguisher", "Hot water"] 1 ["Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Wolf stainless steel gas stove", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Wolf stainless steel oven", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Bosch refrigerator", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Sound system", "Lock on bedroom door", "Dishwasher", "Rice maker"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Baby monitor", "Shower gel", "TV", "Children\u2019s dinnerware", "Pocket wifi", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Wifi \u2013 100 Mbps", "Bed linens", "Cooking basics", "Paid street parking off premises \u2013 CAD3 per hour", "Hot water", "First aid kit", "Samsung electric stove", "Patio or balcony", "Freezer", "Samsung stainless steel oven", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Paid washer\u2013In building", "Hangers", "Hair dryer", "Air conditioning", "Shared gym in building", "Cleaning products", "Whirlpool refrigerator", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Paid dryer\u2013In building", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "50\" HDTV with Netflix, Roku", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Baby monitor", "Shower gel", "TV", "Dishwasher", "Changing table", "Extra pillows and blankets"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cleaning before checkout", "Free dryer\u2013In unit", "Nespresso machine", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Shower gel", "Dishwasher", "Lock on bedroom door", "Wine glasses", "Bathtub", "TV with Roku", "High chair"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "High chair"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Paid parking on premises", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Backyard", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Self check-in", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Kitchen", "Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Free parking on premises", "Self check-in", "Hair dryer", "Carbon monoxide alarm", "TV", "Bedroom comforts", "Air conditioning"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Wifi", "Long term stays allowed", "TV with standard cable", "Free parking on premises", "Lockbox", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Children\u2019s books and toys", "Coffee maker", "High chair", "Hair dryer", "Dryer", "TV with standard cable", "First aid kit", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Babysitter recommendations", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Pack \u2019n Play/travel crib", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["EV charger", "Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Kitchen", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Indoor fireplace", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Microwave", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Refrigerator", "Dishwasher", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Central heating", "Bed linens", "Cooking basics", "TV with Netflix", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Central air conditioning", "Stove", "Long term stays allowed", "Refrigerator", "Cleaning products", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Wifi \u2013 300 Mbps", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Paid parking lot on premises \u2013 CAD7 per day, 1 space", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Smart lock", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Waterfront", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "TV", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Ski-in/Ski-out", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Clothing storage", "Body soap", "Shampoo", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Iron", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Hair dryer"] 1 ["Iron", "Portable heater", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Air conditioning", "Hair dryer", "40\" TV with Netflix", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Security cameras on property", "Toaster", "Shared fenced garden or backyard", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Fire extinguisher", "Dedicated workspace: table", "Coffee maker", "Clothing storage: dresser", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Rice maker", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "HDTV with Netflix", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Carbon monoxide alarm", "Luggage dropoff allowed", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Washer", "Coffee maker", "Hair dryer", "Dryer", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Room-darkening shades", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Cleaning before checkout", "Private entrance", "Microwave", "Security cameras on property", "Dishes and silverware", "Beachfront", "Wifi", "Keypad", "Patio or balcony", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Smoke alarm", "Washer", "TV", "Clothing storage", "Air conditioning", "Dedicated workspace", "Cleaning products", "Free parking on premises", "Cooking basics", "Hair dryer", "Long term stays allowed", "Dishes and silverware", "Iron", "Wifi", "Hangers", "Dryer", "Kitchen", "Essentials", "Heating", "Bed linens"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "TV with Roku"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "TV", "Lock on bedroom door"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Bed linens", "Keurig coffee machine", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Long term stays allowed", "Keypad", "First aid kit", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Security cameras on property", "Beachfront", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Host greets you"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Waterfront", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Full kitchen", "Indoor fireplace", "Shared hot tub", "Hair dryer", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Bedroom comforts", "Room-darkening shades", "Smoke alarm", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Pocket wifi", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Wifi", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Keypad", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Coffee maker", "Private entrance", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Iron", "Dryer", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "High chair"] 1 ["Smoke alarm", "Washer", "Shampoo", "Cooking basics", "Long term stays allowed", "Iron", "Wifi", "Hangers", "Dryer", "Kitchen", "Essentials", "Heating"] 1 ["Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "BBQ grill", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Shared pool", "Toaster", "Luggage dropoff allowed", "Safe", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Cable TV", "Cleaning products", "Washer", "Wifi", "Conditioner", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Hot tub", "Dryer", "Washer", "Long term stays allowed", "Hot water", "Indoor fireplace", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Heating", "Fire extinguisher", "Shower gel", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Body soap", "Shampoo", "Washer", "Wifi", "Carbon monoxide alarm", "Bed linens", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Wifi", "Long term stays allowed", "Bed linens", "Free parking on premises", "Hot water", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets"] 1 ["General Electric refrigerator", "Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "HDTV", "Long term stays allowed", "Stainless steel electric stove", "Hangers", "Free street parking", "BBQ grill", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Pour-over coffee"] 1 ["Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Dishwasher"] 1 ["Extra pillows and blankets", "Stove", "Hangers", "Essentials", "Heating", "Lock on bedroom door", "Bed linens", "Washer", "Coffee maker", "Dryer", "First aid kit", "Dishwasher", "Free parking on premises", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Gym", "Microwave", "Security cameras on property", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Breakfast", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Security cameras on property", "Keypad", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishes and silverware", "Stove", "Private entrance", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "Cooking basics", "Free parking on premises", "Hot water", "Hangers", "Mini fridge", "Free street parking", "Smoke alarm", "Backyard"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Hair dryer", "Smart lock", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Fire extinguisher"] 1 ["Iron", "Ethernet connection", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Shampoo", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Shower gel", "Pocket wifi", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Microwave", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Pool", "Smoke alarm", "Gym", "Hair dryer"] 1 ["Heating", "Long term stays allowed", "Wifi", "TV", "Smoke alarm"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Hangers", "Pool", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Hangers", "Breakfast", "Smoke alarm"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Free parking on premises", "Sound system with Bluetooth and aux", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Coffee maker", "Electric stove", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking garage on premises \u2013 1 space", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Paid parking garage off premises \u2013 CAD16 per day", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Marantz sound system with aux", "Dishwasher", "Wine glasses", "Host greets you", "Bathtub"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Crib", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Clothing storage: walk-in closet", "Ceiling fan", "Shower gel", "TV", "Dishwasher", "Rice maker", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Extra pillows and blankets", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Bathtub", "Ceiling fan"] 1 ["Iron", "Ethernet connection", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Portable fans", "Hangers", "Washer \u2013\u00a0In unit", "BBQ grill", "Hair dryer", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Pour-over coffee"] 1 ["Iron", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Lockbox", "Indoor fireplace", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Carbon monoxide alarm", "Stove", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Smart lock", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking garage off premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Pool", "Lockbox", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Baby bath", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Kitchen", "Private entrance", "Stove", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Indoor fireplace", "Dishwasher", "Free street parking", "Smoke alarm", "Patio or balcony", "Oven", "Backyard"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Kitchen", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "First aid kit", "Hangers", "Lock on bedroom door", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Baby bath", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "High chair"] 1 ["Iron", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lockbox", "Smoke alarm", "Paid parking off premises"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Bathtub"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Microwave", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Private entrance", "Long term stays allowed", "TV", "Hangers", "Free street parking", "Hair dryer"] 1 ["Bed linens", "Hot water", "First aid kit", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Washer", "Wifi", "TV with standard cable", "Free parking on premises", "Long term stays allowed", "Smoke alarm", "Air conditioning", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Lockbox", "Hangers", "Indoor fireplace", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Host greets you", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Piano", "Ethernet connection", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Nespresso machine", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "TV", "Pocket wifi", "Lock on bedroom door", "Clothing storage: walk-in closet and dresser", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Security cameras on property", "Hot water", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Cleaning products", "Central heating", "Carbon monoxide alarm", "Stove", "Lockbox", "Hangers", "Essentials", "Washer", "Elevator", "Coffee maker", "Pool", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Hot tub", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["First aid kit", "Fire extinguisher", "Private entrance", "Free parking on premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Oven", "Heating", "Kitchen", "Coffee maker", "Pocket wifi", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Fireplace guards", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Nespresso machine", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Miele gas stove", "Smoke alarm", "Alexa Bluetooth sound system", "Heating", "Kitchen", "Private entrance", "Miele stainless steel oven", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Cleaning products", "Wifi", "Conditioner", "Dining table", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Paid parking off premises", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "TV", "Security cameras on property", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot water", "First aid kit", "Essentials", "Microwave", "Long term stays allowed", "Paid washer\u2013In building", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Crib", "Paid dryer\u2013In building", "Heating", "Fire extinguisher", "Coffee maker", "Paid parking garage on premises", "TV", "Lock on bedroom door", "Bathtub"] 1 ["Iron", "Sonos Bluetooth sound system", "Cooking basics", "Hot water", "First aid kit", "55\" HDTV", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Stove", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Paid washer\u2013In building", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Cleaning before checkout", "Nespresso machine", "Cleaning products", "Stainless steel oven", "Wifi", "Carbon monoxide alarm", "Dining table", "Toaster", "Smoke alarm", "Paid dryer\u2013In building", "Hot water kettle", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Hangers", "Pack \u2019n Play/travel crib", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Toaster", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Baking sheet", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Beachfront", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Lockbox", "Hair dryer", "Cable TV", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cleaning before checkout", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Dryer \u2013 In building", "Hair dryer", "Gym", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "Washer \u2013\u00a0In building", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Fireplace guards", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Patio or balcony", "Essentials", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Security cameras on property", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Smoke alarm", "Washer", "TV", "Bedroom comforts", "Coffee maker", "Free street parking", "Self check-in", "Bathroom essentials", "Carbon monoxide alarm", "Full kitchen", "Hair dryer", "Indoor fireplace", "Paid parking off premises", "Wifi", "Iron", "Dryer", "Fire extinguisher", "Heating", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Central air conditioning", "Stove", "Microwave", "Gym", "Wifi", "Long term stays allowed", "Dryer \u2013\u00a0In unit", "TV", "Hot water", "Refrigerator", "Hangers", "Dishwasher", "Pool", "Washer \u2013\u00a0In unit", "Smoke alarm", "Oven", "Freezer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Bed linens", "Cooking basics", "Hot water", "TV with Netflix", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Free parking on premises", "Beachfront", "Smoke alarm", "Room-darkening shades", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers"] 1 ["Carbon monoxide alarm", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Hair dryer", "Dryer", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "Iron", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Shampoo", "Wifi", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Lock on bedroom door"] 1 ["Iron", "Piano", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Private fenced garden or backyard", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Cleaning before checkout", "Board games", "Nespresso machine", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Security cameras on property", "Fire pit", "70\" HDTV with Netflix, standard cable", "Dedicated workspace: office chair, desk, and table", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Ceiling fan", "Babysitter recommendations", "Dishwasher", "Rice maker", "Fireplace guards", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Long term stays allowed", "Refrigerator", "Hangers", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Private entrance", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Pool", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Building staff", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Pool", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Air conditioning", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Cable TV"] 1 ["Hot water", "Mini fridge", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Portable fans", "Hangers", "Free street parking", "Backyard", "Wifi", "Carbon monoxide alarm", "Conditioner", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "TV", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Washer", "Children\u2019s books and toys", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Backyard", "Free parking on premises", "Free street parking", "Room-darkening shades", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Keypad", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Stove", "Paid street parking off premises", "Long term stays allowed", "Paid washer\u2013In building", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Cleaning products", "Wifi", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Shower gel", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Mini fridge", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Costco body soap", "Hair dryer", "Cleaning products", "Stainless steel oven", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Smoke alarm", "Clothing storage: closet", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Rice maker", "Wine glasses", "Bathtub", "Paid parking garage on premises \u2013 CAD15 per day, 22 spaces"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "HDTV with Chromecast", "Hair dryer", "Cleaning products", "Wifi", "Carbon monoxide alarm", "Dining table", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Electric stove", "Shower gel", "Wine glasses", "Bathtub", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Window guards", "Free street parking", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Microwave", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Patio or balcony", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Host greets you", "Hair dryer", "Cable TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Lock on bedroom door", "Rice maker", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Smoke alarm", "Washer", "Dedicated workspace", "Free street parking", "Shampoo", "Carbon monoxide alarm", "Hair dryer", "Long term stays allowed", "Keypad", "Iron", "Wifi", "Hangers", "Dryer", "Fire extinguisher", "Essentials", "Heating", "Kitchen", "Lock on bedroom door", "Hot water"] 1 ["Kitchen", "Essentials", "Private entrance", "Iron", "Fire extinguisher", "Lake access", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "TV", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Indoor fireplace", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Heating", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Backyard", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Backyard", "Cable TV", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Elevator", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Host greets you", "Bathtub"] 1 ["Private entrance", "Keypad", "Iron", "Shampoo", "Stove", "High chair", "Bed linens", "Oven", "Dishwasher", "Smoke alarm", "Microwave", "Pack \u2019n Play/travel crib", "Hangers", "Dedicated workspace", "Coffee maker", "Fire extinguisher", "Refrigerator", "Heating", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "Crib", "Cooking basics", "Essentials", "Long term stays allowed", "TV", "Free street parking", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Free parking on premises"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Paid parking garage off premises", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Single level home", "Washer", "Wifi", "Conditioner", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Cable TV", "Backyard", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Free street parking", "Hair dryer", "Paid parking off premises", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Security cameras on property", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "High chair"] 1 ["Piano", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Baking sheet", "TV with Netflix", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Shower gel", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Dryer", "First aid kit", "Essentials", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Coffee maker", "Shampoo", "Microwave", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["EV charger", "Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "High chair"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Backyard", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Ceiling fan", "Ping pong table", "TV", "Sound system", "Rice maker", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Dryer", "Elevator", "Full kitchen", "Indoor fireplace", "Pets allowed", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Bedroom comforts", "Heating", "Coffee maker", "Bathroom essentials", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Rice maker", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Shared pool", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Dishwasher", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Ping pong table", "TV", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Long term stays allowed", "Building staff", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Air conditioning", "Gym", "Washer", "Wifi", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Smoke alarm", "Patio or balcony", "Paid parking off premises"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Game console", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Microwave", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Dishwasher", "Hangers", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Fire extinguisher", "Stove", "Coffee maker", "Dishes and silverware", "Long term stays allowed", "Cooking basics", "Refrigerator", "Smoke alarm"] 1 ["Dryer", "Cooking basics", "Hot water", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Baby bath", "Luggage dropoff allowed", "Crib", "Oven", "Heating", "Kitchen", "Changing table", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "TV", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Long term stays allowed", "Keypad", "TV", "Hangers", "Smoke alarm", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["EV charger", "Iron", "Free parking garage on premises \u2013 1 space", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Air conditioning", "Paid parking off premises", "Nespresso machine", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Clothing storage", "Bread maker", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Lock on bedroom door", "Rice maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Kitchen", "Window AC unit", "Fire extinguisher", "Dishes and silverware", "Microwave", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Free parking on premises", "Portable fans", "Refrigerator", "Hangers", "Lock on bedroom door", "Luggage dropoff allowed", "Smoke alarm", "Host greets you", "Patio or balcony", "Oven", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Window guards", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "Baby monitor", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Keypad", "Hot water", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["EV charger", "Ethernet connection", "Central heating", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Air conditioning", "Cable TV", "Free dryer\u2013In unit", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Clothing storage: closet", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Induction stove", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Kitchen", "Private entrance", "Iron", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm"] 1 ["Heating", "Essentials", "Fire extinguisher", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Smart lock", "Backyard"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Stove", "Shampoo", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Hot water", "Refrigerator", "Hangers", "Free street parking", "Host greets you", "Oven", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Kitchen", "Essentials", "Wifi", "Long term stays allowed", "Elevator", "Free parking on premises", "Smoke alarm", "Host greets you", "Cable TV"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Wifi \u2013 100 Mbps", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "50\" HDTV with Netflix", "Freezer", "Private fenced garden or backyard", "Essentials", "Dedicated workspace: office chair and desk", "Dishes and silverware", "Stove", "Shampoo", "Trash compactor", "Free residential garage on premises \u2013 1 space", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Smart lock", "Free dryer\u2013In unit", "Board games", "Nespresso machine", "Cleaning products", "Conditioner", "LG sound system with Bluetooth and aux", "Fire pit", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Clothing storage: dresser, closet, and walk-in closet", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Smoke alarm"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Stainless steel electric stove", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Hair dryer", "Smart lock", "Backyard", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Hangers", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Bed linens", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Shampoo", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Children\u2019s dinnerware", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Private fenced garden or backyard", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Wine glasses", "Bathtub"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Private garden or backyard", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Gym", "Dedicated workspace", "Long term stays allowed", "Carbon monoxide alarm", "Elevator", "Hot water", "Hangers", "Smoke alarm", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Refrigerator", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Free parking on premises", "TV", "Long term stays allowed", "First aid kit", "Hangers", "Free street parking", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Free dryer\u2013In unit", "Essentials", "Heating", "Kitchen", "Shampoo", "Cleaning products", "Washer", "Wifi", "Long term stays allowed", "Free parking on premises", "Cooking basics", "Hangers", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Hangers", "Pool", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "First aid kit", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "TV with standard cable", "Hangers", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Wifi", "Dryer \u2013\u00a0In unit", "Free parking on premises", "TV", "Hangers", "Washer \u2013\u00a0In unit", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Outdoor dining area", "Dryer", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Shampoo", "Long term stays allowed", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Cleaning products", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Dining table", "Beachfront", "Hot water kettle", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "Outdoor furniture", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Dryer", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Ski-in/Ski-out", "TV", "Dishwasher", "Lock on bedroom door", "Fireplace guards", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Dishwasher", "Bathtub"] 1 ["Iron", "Ethernet connection", "Bed linens", "Paid parking on premises", "Hot water", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Wifi", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dishes and silverware", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Cooking basics", "Elevator", "Long term stays allowed", "Paid parking on premises", "Hot water", "Refrigerator", "Free street parking", "Smoke alarm", "Paid parking off premises"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Mini fridge", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Portable fans", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Toaster oven electric stove", "Heating", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Free parking garage on premises \u2013 1 space", "Bed linens", "Cooking basics", "Dedicated workspace: desk", "Hot water", "First aid kit", "Baking sheet", "TV with Netflix", "Patio or balcony", "Stainless steel induction stove", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Paid washer\u2013In building", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Single level home", "Cleaning products", "Stainless steel oven", "Wifi", "Carbon monoxide alarm", "Dining table", "Smoke alarm", "Paid dryer\u2013In building", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Outdoor furniture", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Lockbox", "Hangers", "Lock on bedroom door", "Free street parking", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Shower gel", "TV", "Hot water", "Hangers", "Indoor fireplace", "Breakfast", "Air conditioning", "Hair dryer", "High chair"] 1 ["Iron", "Bed linens", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Fire extinguisher", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Private entrance", "Keypad", "Iron", "Shampoo", "Backyard", "Bed linens", "Smoke alarm", "Microwave", "Pack \u2019n Play/travel crib", "Hangers", "Dedicated workspace", "Coffee maker", "Refrigerator", "Heating", "First aid kit", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "Extra pillows and blankets", "Essentials", "TV", "Free street parking", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Free parking on premises", "Patio or balcony"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Air conditioning", "Hair dryer", "Paid parking off premises"] 1 ["Iron", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Lockbox", "Pack \u2019n Play/travel crib", "Hair dryer", "Cleaning before checkout", "Nespresso machine", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Dishwasher", "Wine glasses", "Bathtub", "TV with Roku", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Dryer", "Washer", "Wifi", "Long term stays allowed", "Cooking basics", "TV", "Hot water", "Pool", "Smoke alarm", "Hair dryer", "Smart lock"] 1 ["Iron", "Dryer", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Lock on bedroom door", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Wifi", "Long term stays allowed", "Carbon monoxide alarm", "Bed linens", "Free parking on premises", "TV", "Hot water", "First aid kit", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Pocket wifi", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Dryer", "Baby safety gates", "Elevator", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "TV with standard cable", "Lockbox", "Pool", "Air conditioning", "Cable TV", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Bathtub"] 1 ["Carbon monoxide alarm", "Hangers", "Essentials", "Heating", "Washer", "Coffee maker", "Hair dryer", "Dryer", "TV with standard cable", "Dishwasher", "Backyard", "Dedicated workspace", "Free street parking", "Long term stays allowed", "Iron", "Refrigerator", "Smoke alarm", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Hot tub", "Dryer", "Washer", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Indoor fireplace", "Pool", "Smoke alarm", "Host greets you", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Host greets you"] 1 ["Extra pillows and blankets", "Carbon monoxide alarm", "Stove", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Bed linens", "Washer", "Elevator", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "TV with standard cable", "Dishwasher", "Dedicated workspace", "Cooking basics", "Refrigerator", "Hot water", "Smoke alarm", "Microwave", "Shampoo", "Security cameras on property", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Paid parking off premises", "Nespresso machine", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Smoke alarm", "Washer", "TV", "Elevator", "Air conditioning", "Free parking on premises", "Gym", "Shampoo", "Cable TV", "Pool", "Hair dryer", "Indoor fireplace", "Long term stays allowed", "Wifi", "Kitchen", "Dryer", "Heating", "Hot tub", "Hot water"] 1 ["Kitchen", "Essentials", "Coffee maker", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Long term stays allowed", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Oven"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "BBQ grill", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Host greets you"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Iron", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Game console", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Dishwasher"] 1 ["Private entrance", "Lockbox", "Iron", "Shampoo", "Stove", "Bed linens", "Pool", "Oven", "Dishwasher", "Smoke alarm", "Microwave", "Hangers", "Dedicated workspace", "Window guards", "Air conditioning", "Coffee maker", "Fire extinguisher", "Refrigerator", "Single level home", "Heating", "Cable TV", "Indoor fireplace", "Table corner guards", "Waterfront", "Hair dryer", "Gym", "Wifi", "Washer", "Hot water", "TV with standard cable", "Cooking basics", "Extra pillows and blankets", "Essentials", "Long term stays allowed", "Carbon monoxide alarm", "Dryer", "Ethernet connection", "Dishes and silverware", "Kitchen", "Free parking on premises", "Patio or balcony"] 1 ["Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Keypad", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Blomberg, gas stainless steel oven", "Hot water", "First aid kit", "32\" HDTV with Netflix, premium cable", "Indoor fireplace", "Dedicated workspace: desk and table", "Baking sheet", "Freezer", "Clothing storage: closet and dresser", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Smart lock", "Single level home", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dining table", "Toaster", "LG refrigerator", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Portable air conditioning", "Body soap", "Shampoo", "Microwave", "Dishes and silverware", "Stove", "Paid street parking off premises", "Long term stays allowed", "Bose sound system with aux", "Refrigerator", "Hangers", "Pool", "Waterfront", "Hair dryer", "Gym", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Wifi \u2013 600 Mbps", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Waterfront", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "TV", "Lock on bedroom door"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Bed linens", "Hot water", "Essentials", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "Baking sheet", "TV with Netflix", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Wifi \u2013 1000 Mbps", "Ethernet connection", "Hot tub", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Game console: PS5", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Private fenced garden or backyard", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Window guards", "Stove", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Record player", "Board games", "Cleaning products", "Washer", "Carbon monoxide alarm", "Conditioner", "Dining table", "Keypad", "Fire pit", "Toaster", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Dedicated workspace: desk, monitor, and office chair", "Hot water kettle", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Babysitter recommendations", "Shower gel", "Children\u2019s dinnerware", "Sound system", "Rice maker", "Fireplace guards", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Cable TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door", "Fireplace guards", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "Hot water", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm"] 1 ["Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "Cleaning products", "Wifi", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Dishwasher", "Wine glasses", "Bathtub", "Clothing storage: dresser and closet"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "Children\u2019s books and toys", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Children\u2019s dinnerware", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Kitchen", "Fire extinguisher", "TV", "Dishwasher", "Lock on bedroom door", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Private entrance", "Iron", "Coffee maker", "Shampoo", "Dishes and silverware", "Wifi", "Bed linens", "Free parking on premises", "Keypad", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Private entrance", "Iron", "Shampoo", "High chair", "Bed linens", "Oven", "Dishwasher", "Smoke alarm", "Pack \u2019n Play/travel crib", "Microwave", "Hangers", "Children\u2019s books and toys", "Fire extinguisher", "Refrigerator", "Heating", "Cable TV", "Hair dryer", "Luggage dropoff allowed", "Wifi", "Washer", "Hot water", "TV with standard cable", "Crib", "Extra pillows and blankets", "Cooking basics", "Essentials", "Long term stays allowed", "Free street parking", "Carbon monoxide alarm", "Dryer", "Dishes and silverware", "Kitchen", "Room-darkening shades", "Outlet covers", "Patio or balcony", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Hot water", "Indoor fireplace", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Mini fridge", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "TV with standard cable", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer", "Cable TV"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher"] 1 ["Iron", "Outdoor dining area", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Freezer", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Gym", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Free parking on premises", "Toaster", "Smoke alarm", "Room-darkening shades", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Pocket wifi", "Dishwasher", "Wine glasses", "Bathtub", "Ceiling fan"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Long term stays allowed", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Cooking basics", "Hot water", "First aid kit", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Board games", "Single level home", "Washer", "Wifi", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Extra pillows and blankets"] 1 ["Fire extinguisher", "Wifi", "First aid kit", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Smart lock", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Dryer", "Washer", "Dedicated workspace", "Bed linens", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Indoor fireplace", "Lock on bedroom door", "Extra pillows and blankets", "Air conditioning"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Cooking basics", "Elevator", "Free parking on premises", "TV", "Long term stays allowed", "Lockbox", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Microwave", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Dedicated workspace", "Free parking on premises", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Hot tub", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Gym", "TV", "Hot water", "First aid kit", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Hot tub", "Dryer", "Elevator", "Cooking basics", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "First aid kit", "Mini fridge", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Keypad", "Toaster", "Safe", "Smoke alarm", "Clothing storage: closet", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Coffee maker", "Dishes and silverware", "Shampoo", "Private entrance", "EV charger", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Essentials", "Stove", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Cable TV"] 1 ["Iron", "Bed linens", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Backyard", "Single level home", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Smoke alarm", "Heating", "Private entrance", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Sonos sound system", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Air conditioning", "Backyard", "Paid parking off premises", "Nespresso machine", "Gym", "Cleaning products", "Washer", "Bidet", "Carbon monoxide alarm", "Conditioner", "Wifi", "Dining table", "Free parking on premises", "Toaster", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Host greets you"] 1 ["Hot water", "Patio or balcony", "Essentials", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Private entrance", "Fire extinguisher", "Dishes and silverware", "Microwave", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Refrigerator", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Pocket wifi", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Kitchen", "Oven", "Coffee maker", "Stove", "Microwave", "Dryer", "Washer", "Wifi", "Bed linens", "Cooking basics", "Long term stays allowed", "TV", "Hot water", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "First aid kit", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Long term stays allowed", "First aid kit", "Lock on bedroom door", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Paid parking off premises", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Beachfront", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Ethernet connection", "Dryer", "Washer", "Wifi", "Bed linens", "Dedicated workspace", "Long term stays allowed", "Shower gel", "Hangers", "Smoke alarm", "Extra pillows and blankets", "Hair dryer"] 1 ["Heating", "Coffee maker", "Bathroom essentials", "Gym", "Iron", "Smoke alarm", "Dryer", "Washer", "Wifi", "Free parking on premises", "Elevator", "Carbon monoxide alarm", "Fire extinguisher", "TV", "Full kitchen", "Bathtub", "Bedroom comforts", "Pets allowed", "Pack \u2019n Play/travel crib", "Hair dryer"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Free parking on premises", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Mini fridge", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Washer \u2013\u00a0In unit", "BBQ grill", "Hair dryer", "Cable TV", "Backyard", "Stainless steel gas stove", "Nespresso machine", "Single level home", "Cleaning products", "Stainless steel oven", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Dining table", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Laundromat nearby", "Fire extinguisher", "Coffee maker", "Private entrance", "Outdoor furniture", "Shower gel", "TV", "Sound system", "Rice maker", "Dishwasher", "Wine glasses", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Cleaning products", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Elevator", "Hot water", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Shared hot tub", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Shared pool", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Gym", "Dryer", "Washer", "Wifi", "Bed linens", "Free parking on premises", "Long term stays allowed", "TV", "Hot water", "Hangers", "Pool", "Hair dryer", "Cable TV"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Bathtub"] 1 ["Iron", "Outdoor dining area", "Ethernet connection", "Dryer", "Central heating", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Waterfront", "Hair dryer", "Cable TV", "Gym", "Cleaning products", "Single level home", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Dining table", "Fire pit", "Toaster", "Free washer\u2013In unit", "Shared fenced garden or backyard", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Oven", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "32\" TV with Netflix, premium cable, standard cable", "Shower gel", "Dishwasher", "Wine glasses", "Pour-over coffee"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Lake access", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Air conditioning", "Hair dryer", "Cable TV", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Security cameras on property", "Hot water", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "TV", "Lockbox", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Kitchen", "Heating", "Coffee maker", "Bathroom essentials", "Iron", "Smoke alarm", "Washer", "Dryer", "Wifi", "Free parking on premises", "Self check-in", "Elevator", "Hair dryer", "TV", "Carbon monoxide alarm", "Dishwasher", "Bedroom comforts", "Pets allowed", "Air conditioning", "Paid parking off premises"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Host greets you"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Smoke alarm"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "TV with standard cable", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Air conditioning", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "TV with standard cable", "Portable fans", "Refrigerator", "Hangers", "Hair dryer", "Paid parking off premises", "Cable TV", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "Rice maker", "Host greets you", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Iron", "Dishes and silverware", "Shampoo", "Wifi", "Dedicated workspace", "Long term stays allowed", "Bed linens", "TV", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Free street parking", "Lockbox", "Air conditioning", "Extra pillows and blankets", "Hair dryer", "Cable TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Free parking on premises", "Hangers", "Smoke alarm"] 1 ["Cleaning products", "Carbon monoxide alarm", "Bathtub", "Luggage dropoff allowed", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Dining table", "Bed linens", "Washer", "Hot water kettle", "Children\u2019s books and toys", "Waterfront", "Hair dryer", "Children\u2019s dinnerware", "Dryer", "First aid kit", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Freezer", "Room-darkening shades", "Body soap", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Fireplace guards", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Single level home", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Bed linens", "Cooking basics", "Keurig coffee machine", "Hot water", "Baking sheet", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Hair dryer", "Wifi", "Dedicated workspace", "Conditioner", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Kitchen", "Essentials", "Dryer", "Washer", "Wifi", "Long term stays allowed", "TV", "Hot water", "Lock on bedroom door", "Smoke alarm", "Air conditioning"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Baking sheet", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Cable TV", "Paid parking off premises", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Room-darkening shades", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Children\u2019s dinnerware", "Dishwasher", "Changing table", "Extra pillows and blankets", "High chair"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Lock on bedroom door"] 1 ["Iron", "Hot tub", "Dryer", "Cooking basics", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "BBQ grill", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Host greets you", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hot water", "Hangers", "Smoke alarm"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Smart lock", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Breakfast", "Essentials", "Shampoo", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Baby bath", "Beachfront", "Luggage dropoff allowed", "Crib", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Table corner guards", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Breakfast", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Sauna", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Extra pillows and blankets", "Hair dryer", "Cable TV", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Pocket wifi", "Dishwasher", "Wine glasses", "Pour-over coffee", "Host greets you", "Bathtub", "Ceiling fan"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Mini fridge", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Trash compactor", "Long term stays allowed", "Portable fans", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Private entrance", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Cooking basics", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Indoor fireplace", "Smoke alarm"] 1 ["Kitchen", "Essentials", "Private entrance", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Carbon monoxide alarm", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Coffee maker", "High chair", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Iron", "Dryer", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Long term stays allowed", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hangers", "Breakfast", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Smart lock", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker"] 1 ["EV charger", "Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Outdoor dining area", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Cleaning products", "Washer", "Dedicated workspace", "Carbon monoxide alarm", "Dining table", "Wifi \u2013 300 Mbps", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Paid parking lot on premises \u2013 CAD7 per day, 1 space", "TV", "Dishwasher", "Wine glasses", "Pour-over coffee", "Ceiling fan"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Shower gel", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Bathtub", "Extra pillows and blankets"] 1 ["Hot water", "Essentials", "Kitchen", "Elevator", "Pool", "Dryer", "TV", "Gym", "Long term stays allowed", "Heating", "Wifi", "Smoke alarm", "Washer", "Hot tub"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Paid parking off premises", "Cable TV", "Cleaning before checkout", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Baking sheet", "Extra pillows and blankets", "Wine glasses", "Carbon monoxide alarm", "Bathtub", "Stove", "Hangers", "Essentials", "Heating", "Dining table", "Clothing storage: wardrobe", "Bed linens", "Washer", "Hot water kettle", "Air conditioning", "Coffee maker", "Hair dryer", "Smart lock", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Body soap", "Cooking basics", "Long term stays allowed", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Shower gel", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Bread maker", "Oven"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Dishwasher"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Dryer", "Bed linens", "Hot water", "First aid kit", "Indoor fireplace", "Essentials", "Shampoo", "Outlet covers", "Hangers", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Children\u2019s dinnerware", "Extra pillows and blankets"] 1 ["Dryer", "Baby safety gates", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Outlet covers", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Security cameras on property", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Coffee maker", "Babysitter recommendations", "Children\u2019s dinnerware", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Paid parking on premises", "First aid kit", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Hair dryer", "Paid parking off premises", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "Coffee maker", "Extra pillows and blankets"] 1 ["Kitchen", "Essentials", "Dishes and silverware", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "TV", "Hangers", "Pool", "Smoke alarm", "Smart lock"] 1 ["Iron", "Dryer", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Microwave", "Long term stays allowed", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "TV"] 1 ["Stove", "Hangers", "Essentials", "Heating", "Washer", "Elevator", "Hair dryer", "Dryer", "First aid kit", "Dishwasher", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Gym", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Fire extinguisher", "Oven"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Wifi", "Dedicated workspace", "Long term stays allowed", "Keypad", "TV", "Hot water", "Hangers", "Indoor fireplace", "Free street parking", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Pool", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Free street parking", "Hair dryer", "Paid parking off premises", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Washer \u2013\u00a0In unit", "Gas stove", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Wifi", "Dedicated workspace", "Dryer \u2013\u00a0In unit", "Conditioner", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "High chair"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "First aid kit", "Hangers", "Indoor fireplace", "Smoke alarm", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Dishes and silverware", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Lock on bedroom door", "Smoke alarm", "Patio or balcony", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Private entrance", "Shampoo", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm"] 1 ["Iron", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Pack \u2019n Play/travel crib", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Gym", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Bathtub", "Extra pillows and blankets", "High chair"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Cooking basics", "Hot water", "Essentials", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV", "Host greets you"] 1 ["Heating", "Kitchen", "Dryer", "Washer", "Wifi", "Free parking on premises", "Long term stays allowed", "Hangers", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Elevator", "Long term stays allowed", "Hot water", "Hangers", "Beachfront", "Pool", "Smoke alarm", "Host greets you", "Air conditioning", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Iron", "Ethernet connection", "Dryer", "Cooking basics", "Hot water", "Freezer", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Dining table", "Security cameras on property", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Wine glasses", "Host greets you"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Paid parking off premises", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Indoor fireplace", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "TV", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Dryer", "Washer", "Carbon monoxide alarm", "Bed linens", "Wifi", "Dedicated workspace", "Long term stays allowed", "Hangers", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Barbecue utensils", "Elevator", "Paid parking lot off premises", "Hot water", "First aid kit", "Baking sheet", "Paid parking on premises", "Patio or balcony", "Freezer", "Clothing storage: closet and dresser", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "BBQ grill", "Pack \u2019n Play/travel crib", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Dining table", "Toaster", "Luggage dropoff allowed", "Safe", "Crib", "Room-darkening shades", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "TV", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets", "Shared sauna", "High chair"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Hair dryer", "Air conditioning", "Backyard", "Washer", "Wifi", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Air conditioning", "Smart lock", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Dishwasher", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "Free parking on premises", "Long term stays allowed", "Hangers", "Smoke alarm"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Freezer", "Essentials", "Bread maker", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Paid street parking off premises", "Long term stays allowed", "Radiant heating", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Lockbox", "Pack \u2019n Play/travel crib", "Air conditioning", "Hair dryer", "Record player", "Cleaning before checkout", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Oven", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Shampoo", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "Hot water", "First aid kit", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Keurig coffee machine", "Elevator", "Paid parking on premises", "Hot water", "Baking sheet", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Building staff", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Gas stove", "Pack \u2019n Play/travel crib", "TV with premium cable", "Hair dryer", "Air conditioning", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Conditioner", "Luggage dropoff allowed", "Smoke alarm", "Crib", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Dishwasher", "High chair"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Mini fridge", "Patio or balcony", "Freezer", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Stove", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Dining table", "Toaster", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Shower gel", "TV", "Wine glasses", "Pour-over coffee", "Extra pillows and blankets"] 1 ["Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "BBQ grill", "Hair dryer", "Air conditioning", "Cable TV", "Backyard", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Dedicated workspace", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Beach essentials", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Bed linens", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Keypad", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV", "Dishwasher"] 1 ["EV charger", "Iron", "Ethernet connection", "Dryer", "Bed linens", "Cooking basics", "Barbecue utensils", "Elevator", "Hot water", "First aid kit", "Indoor fireplace", "Baking sheet", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Waterfront", "Hair dryer", "Paid parking off premises", "Cable TV", "Cleaning before checkout", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Beachfront", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Beach essentials", "Babysitter recommendations", "Shower gel", "Pocket wifi", "Dishwasher", "Lock on bedroom door", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Essentials", "Shampoo", "Building staff", "Long term stays allowed", "Hangers", "Pool", "Hair dryer", "Paid parking off premises", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV"] 1 ["Ethernet connection", "Dryer", "Bed linens", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Oven", "Heating", "Kitchen", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "BBQ grill", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "TV", "Children\u2019s dinnerware", "Dishwasher", "Bathtub"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "Indoor fireplace", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Washer", "Wifi", "Keypad", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker"] 1 ["Dryer", "Bed linens", "Cooking basics", "Hot water", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Single level home", "Washer", "Wifi", "Free parking on premises", "Luggage dropoff allowed", "Oven", "Heating", "Kitchen", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Fire extinguisher", "Shower gel", "Lock on bedroom door"] 1 ["Heating", "Essentials", "Kitchen", "Fire extinguisher", "Dishes and silverware", "Shampoo", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Long term stays allowed", "TV", "First aid kit", "Hangers", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Fire extinguisher", "Shampoo", "Private entrance", "Dryer", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Long term stays allowed", "TV", "Lockbox", "Hangers", "Indoor fireplace", "Smoke alarm", "Air conditioning", "Hair dryer"] 1 ["Heating", "Essentials", "Kitchen", "Iron", "Shampoo", "Dryer", "Washer", "Wifi", "Elevator", "TV", "Hot water", "Hangers", "Lock on bedroom door", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Elevator", "Cooking basics", "Hot water", "Breakfast", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Cable TV", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Cable TV", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Ethernet connection", "Dryer", "Bed linens", "Elevator", "Hot water", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Security cameras on property", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "TV", "Host greets you", "Extra pillows and blankets"] 1 ["Smoke alarm", "Microwave", "Long term stays allowed", "Security cameras on property", "Dishes and silverware", "Wifi", "Paid parking off premises", "Host greets you", "Essentials", "Dishwasher", "Refrigerator", "Hot water"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Indoor fireplace", "Bathtub", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Cable TV", "Backyard", "Gym", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Room-darkening shades", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Babysitter recommendations", "Pocket wifi", "Fireplace guards", "Changing table", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Hot water", "Breakfast", "Essentials", "Shampoo", "Long term stays allowed", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "TV"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Cleaning before checkout", "Washer", "Wifi", "Carbon monoxide alarm", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Cooking basics", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Coffee maker", "TV", "Dishwasher", "Host greets you"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Lockbox", "Hangers", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Shampoo", "Gym", "Hot tub", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Dedicated workspace", "Elevator", "Free parking on premises", "Long term stays allowed", "Hot water", "Hangers", "Breakfast", "Smoke alarm", "Hair dryer"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Oven", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "Essentials", "Bread maker", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Hair dryer", "Backyard", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Hot water kettle", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Lock on bedroom door", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Private entrance", "Dishes and silverware", "Microwave", "Washer", "Wifi", "Dedicated workspace", "Bed linens", "Free parking on premises", "Long term stays allowed", "Hot water", "Refrigerator", "Hangers", "Lock on bedroom door", "Free street parking", "Luggage dropoff allowed", "Smoke alarm", "Hair dryer", "Backyard"] 1 ["Dryer", "Elevator", "Cooking basics", "Paid parking on premises", "Hot water", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Smoke alarm", "Oven", "Heating", "Kitchen", "Coffee maker", "TV", "Dishwasher"] 1 ["EV charger", "Truly Earth Friend shampoo", "Iron", "Piano", "Ethernet connection", "Outdoor dining area", "Free carport on premises \u2013 3 spaces", "Dryer", "55\" HDTV with Apple TV, Amazon Prime Video, Netflix, standard cable", "Baby safety gates", "Bed linens", "Central heating", "Wifi \u2013 75 Mbps", "Cooking basics", "Viking Profesionnal stainless steel oven", "Barbecue utensils", "Hot water", "First aid kit", "Indoor fireplace", "Mini fridge", "Clothing storage: dresser, closet, and wardrobe", "Baking sheet", "Patio or balcony", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Microwave", "Truly Earth Friend body soap", "Trash compactor", "Long term stays allowed", "Outlet covers", "Viking Profesionnal stainless steel gas stove", "Hangers", "Free street parking", "BBQ grill", "Truly Earth Friend conditioner", "Hair dryer", "Dedicated workspace: office chair, monitor, desk, and table", "Cable TV", "Backyard", "Smart lock", "Board games", "Cleaning products", "Washer", "Carbon monoxide alarm", "Dining table", "Security cameras on property", "Mosquito net", "Toaster", "Sub-zero refrigerator", "Luggage dropoff allowed", "Room-darkening shades", "Smoke alarm", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Outdoor furniture", "Shower gel", "Sound system", "Rice maker", "Fireplace guards", "Dishwasher", "Wine glasses", "Pour-over coffee", "Bathtub", "Extra pillows and blankets"] 1 ["Iron", "Dryer", "Self check-in", "Full kitchen", "Indoor fireplace", "Free street parking", "Children\u2019s books and toys", "Hair dryer", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Free parking on premises", "Bedroom comforts", "Room-darkening shades", "Smoke alarm", "Heating", "Beach essentials", "Coffee maker", "Bathroom essentials", "Fire extinguisher", "TV", "Dishwasher", "Fireplace guards", "Bathtub"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "First aid kit", "Patio or balcony", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Microwave", "Long term stays allowed", "Refrigerator", "Hangers", "Pool", "Hair dryer", "Smart lock", "Gym", "Washer", "Wifi", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher", "Extra pillows and blankets"] 1 ["Dryer", "Elevator", "Cooking basics", "Hot water", "First aid kit", "Breakfast", "Essentials", "Dishes and silverware", "Stove", "Shampoo", "Building staff", "Long term stays allowed", "Refrigerator", "Air conditioning", "Hair dryer", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Oven", "Heating", "Kitchen", "Fire extinguisher", "Coffee maker", "TV", "Dishwasher"] 1 ["Iron", "Dryer", "Bed linens", "Hot water", "Essentials", "Dishes and silverware", "Shampoo", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Free street parking", "Hair dryer", "Cable TV", "Backyard", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Keypad", "Luggage dropoff allowed", "Smoke alarm", "Heating", "Private entrance", "Fire extinguisher", "Coffee maker", "Extra pillows and blankets"] 1 ["Iron", "Hot tub", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Paid parking on premises", "Hot water", "First aid kit", "Indoor fireplace", "Patio or balcony", "Essentials", "Clothing storage", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Sauna", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Record player", "Backyard", "Paid parking off premises", "Gym", "Cleaning products", "Single level home", "Washer", "Wifi", "Carbon monoxide alarm", "Conditioner", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "TV", "Bathtub", "Extra pillows and blankets"] 1 ["Heating", "Essentials", "Kitchen", "Private entrance", "Gym", "Dryer", "Washer", "Carbon monoxide alarm", "Wifi", "Free parking on premises", "Long term stays allowed", "TV", "Hangers", "Smoke alarm", "Air conditioning"] 1 ["EV charger", "Ethernet connection", "Free parking garage on premises \u2013 1 space", "Hot tub", "Dryer", "Elevator", "Hot water", "Long term stays allowed", "Stainless steel electric stove", "Refrigerator", "Pool", "Waterfront", "Backyard", "Gym", "Stainless steel oven", "Washer", "Carbon monoxide alarm", "Security cameras on property", "Smoke alarm", "Room-darkening shades", "Kitchen", "Dishwasher", "Bathtub"] 1 ["Carbon monoxide alarm", "Stove", "Paid parking off premises", "Lockbox", "Hangers", "Essentials", "Heating", "Washer", "Air conditioning", "Coffee maker", "Hair dryer", "Dryer", "First aid kit", "Backyard", "Free parking on premises", "Dedicated workspace", "Free street parking", "Cooking basics", "Indoor fireplace", "Long term stays allowed", "Iron", "Refrigerator", "Hot water", "Smoke alarm", "TV", "Private entrance", "Microwave", "Shampoo", "Dishes and silverware", "Wifi", "Patio or balcony", "Kitchen", "Breakfast"] 1 ["Iron", "Central heating", "Bed linens", "Cooking basics", "Hot water", "First aid kit", "42\" HDTV with HBO Max, Netflix, premium cable", "Freezer", "Drying rack for clothing", "Essentials", "Dishes and silverware", "Body soap", "Shampoo", "Microwave", "Long term stays allowed", "Portable fans", "Refrigerator", "Hangers", "Free street parking", "Clothing storage: wardrobe", "Hair dryer", "Cable TV", "Free dryer\u2013In unit", "Cleaning products", "Wifi", "Dedicated workspace", "Carbon monoxide alarm", "Conditioner", "Keypad", "Toaster", "Free washer\u2013In unit", "Luggage dropoff allowed", "Safe", "Smoke alarm", "Hot water kettle", "Kitchen", "Private entrance", "Fire extinguisher", "Coffee maker", "Shower gel", "Children\u2019s dinnerware", "Dishwasher", "Wine glasses", "Bathtub", "Extra pillows and blankets"] 1 Name: amenities, dtype: int64
Pulling out the individual amenities, it's a long-tailed distribution (i.e. most amenity types are present in low-count, but there are a lot of them).
amenity_series = pd.Series([item for sublist in amen for item in json.loads(sublist)]).value_counts()
amenity_series
Wifi 4226 Heating 4138 Smoke alarm 4112 Essentials 4001 Kitchen 3986 Long term stays allowed 3893 Hangers 3881 Washer 3688 Dryer 3655 Hair dryer 3537 Hot water 3314 Iron 3260 Shampoo 3238 Dedicated workspace 3231 TV 3108 Carbon monoxide alarm 3053 Dishes and silverware 2841 Fire extinguisher 2740 Refrigerator 2710 Cooking basics 2625 Microwave 2561 Coffee maker 2412 Stove 2391 Oven 2325 Free parking on premises 2294 Private entrance 2185 Bed linens 2075 Free street parking 1959 Dishwasher 1869 First aid kit 1771 Patio or balcony 1665 Extra pillows and blankets 1545 Elevator 1394 Cable TV 1249 Luggage dropoff allowed 1123 Air conditioning 1122 Gym 1121 Backyard 1121 Indoor fireplace 969 Bathtub 943 Shower gel 706 Lockbox 672 Keypad 667 Host greets you 647 Hot tub 619 Lock on bedroom door 599 Pool 563 Baking sheet 485 Paid parking off premises 465 Single level home 443 BBQ grill 439 Freezer 434 Security cameras on property 433 Room-darkening shades 414 Ethernet connection 410 Body soap 375 Conditioner 363 Pack ’n Play/travel crib 361 Children’s books and toys 358 Paid parking on premises 342 Hot water kettle 333 Portable fans 293 TV with standard cable 291 High chair 277 Smart lock 265 Toaster 263 Breakfast 255 Cleaning products 250 Wine glasses 245 Dining table 228 Children’s dinnerware 205 Cleaning before checkout 182 Crib 155 Barbecue utensils 149 Outdoor furniture 142 Building staff 136 Waterfront 123 Rice maker 116 Babysitter recommendations 114 Clothing storage 113 Keurig coffee machine 106 Pour-over coffee 103 Laundromat nearby 99 EV charger 98 Beachfront 95 Mini fridge 90 Outdoor dining area 84 Pocket wifi 84 Nespresso machine 84 Drying rack for clothing 82 Beach essentials 80 Game console 79 Baby safety gates 76 Outlet covers 72 Bread maker 71 Window guards 64 Fireplace guards 64 Bathroom essentials 61 Ceiling fan 61 Bedroom comforts 61 Baby bath 57 Changing table 48 Sound system 47 Board games 43 Trash compactor 41 Washer – In unit 37 Clothing storage: closet 37 Safe 37 Full kitchen 35 Self check-in 35 Dryer – In unit 35 Lake access 34 Central heating 33 Free washer–In unit 33 Free dryer–In unit 31 Baby monitor 29 Radiant heating 28 Free parking garage on premises – 1 space 27 Stainless steel oven 26 Paid street parking off premises 26 Piano 23 Electric stove 23 Clothing storage: dresser and closet 20 Clothing storage: closet and dresser 19 Shared pool 18 Portable air conditioning 17 Table corner guards 17 Fire pit 16 Dedicated workspace: table 15 Sauna 15 Shared sauna 14 Bidet 14 Record player 14 Shared fenced garden or backyard 14 Washer – In building 13 Gas stove 13 Stainless steel gas stove 13 Private fenced garden or backyard 13 Stainless steel electric stove 13 Dryer – In building 12 Free residential garage on premises – 1 space 12 Paid washer–In building 11 Dedicated workspace: office chair and desk 11 Paid parking garage on premises 11 Bikes 10 Paid dryer–In building 9 Free washer–In building 9 Paid parking garage off premises 9 Pets allowed 9 Dedicated workspace: desk and office chair 9 Shared hot tub 9 Wifi – 300 Mbps 9 Wifi – 100 Mbps 8 Ski-in/Ski-out 8 TV with Roku 7 Free dryer–In building 7 TV with Netflix 7 Bluetooth sound system 7 Clothing storage: wardrobe 7 Mosquito net 7 Induction stove 7 LG refrigerator 6 Central air conditioning 6 Portable heater 6 Paid parking lot on premises – CAD7 per day, 1 space 5 Shared gym in building 5 Free driveway parking on premises – 1 space 5 Sound system with Bluetooth and aux 5 Ping pong table 4 Dove body soap 4 HDTV with Netflix 4 Kitchenette 4 Dedicated workspace: desk 4 Wifi – 150 Mbps 4 Private garden or backyard 4 Clothing storage: wardrobe and closet 3 Clothing storage: walk-in closet and dresser 3 Wifi – 75 Mbps 3 55" HDTV 3 Paid street parking off premises – CAD2 per hour 3 Children’s books and toys for ages 0-2 years old, 2-5 years old, 5-10 years old, and 10+ years old 3 Frigidaire refrigerator 3 Clothing storage: walk-in closet, closet, and dresser 3 Stainless steel stove 3 Window AC unit 3 Clothing storage: walk-in closet 3 Samsung refrigerator 3 Wifi – 1000 Mbps 3 Free parking garage on premises 3 HDTV with Roku 3 Paid parking garage on premises – 1 space 3 Outdoor shower 3 Clothing storage: dresser, wardrobe, and closet 3 Pool table 3 Clothing storage: closet, dresser, and walk-in closet 2 Fenced garden or backyard 2 Samsung stainless steel oven 2 wow electric stove 2 danby refrigerator 2 Boat slip 2 Bose sound system with aux 2 Clothing storage: walk-in closet and closet 2 Frigidaire electric stove 2 HDTV with Netflix, standard cable 2 Clothing storage: dresser, closet, and walk-in closet 2 55" HDTV with Netflix, Amazon Prime Video, Chromecast 2 Free parking on premises – 1 space 2 42" HDTV with Netflix 2 Sonos sound system 2 Shared garden or backyard 2 Paid washer 2 HDTV with Apple TV 2 Wifi – 50 Mbps 2 Paid dryer 2 55" HDTV with Netflix 2 Clothing storage: dresser 2 Paid parking garage on premises – CAD100 per stay, 1 space 2 Neutrogena conditioner 2 HDTV with Chromecast 2 Clothing storage: dresser, closet, and wardrobe 2 Kayak 2 Neutrogena body soap 2 Miele stainless steel oven 2 Bose Bluetooth sound system 2 40" HDTV with Netflix 2 Paid parking lot off premises 2 Neutrogena shampoo 2 HDTV 2 Samsung induction stove 2 Children’s books and toys for ages 2-5 years old, 5-10 years old, and 10+ years old 2 danby oven 2 Shared indoor heated olympic-sized saltwater lap pool 2 Wifi – 500 Mbps 2 HDTV with Netflix, Amazon Prime Video 2 Frigidaire oven 2 40" TV with Netflix 2 Free driveway parking on premises 2 Private hot tub 2 HDTV with Apple TV, Netflix 2 Whirlpool refrigerator 2 Blomberg refrigerator 2 Dedicated workspace: desk and table 2 Clothing storage: closet and walk-in closet 2 Paid street parking off premises – CAD3 per hour 2 Free carport on premises – 2 spaces 2 wow refrigerator 2 40" HDTV with Amazon Prime Video, Netflix 1 miele stainless steel gas stove 1 Paid parking garage on premises – CAD15 per day, 22 spaces 1 Wifi – 940 Mbps 1 Kirkland Organic 100% Eco-Friendly Made in Canada shampoo 1 Dedicated workspace: office chair, monitor, desk, and table 1 Stainless Steel with a water dispenser refrigerator 1 HDTV with Amazon Prime Video 1 55" HDTV with Amazon Prime Video, Netflix, Apple TV 1 BC Bud Skin Care conditioner 1 Children’s books and toys for ages 2-5 years old and 5-10 years old 1 GE Profile stainless steel oven 1 Paid parking lot on premises – 8 spaces 1 Blomberg stainless steel oven 1 42" HDTV with Amazon Prime Video, Netflix, standard cable 1 Organic Carina products from the Soap Factory in Vancouver body soap 1 100% Organic Kirkland conditioner 1 TV with premium cable 1 Viking Profesionnal stainless steel gas stove 1 365 by Whole Foods conditioner 1 58" HDTV with Netflix, standard cable 1 43" HDTV with standard cable 1 Toaster Oven oven 1 Costco body soap 1 HDTV with Roku, Netflix 1 Children’s books and toys for ages 2-5 years old 1 Mini Fridge refrigerator 1 AEG stainless steel oven 1 55" HDTV with Netflix, Roku, Amazon Prime Video 1 Kirkland Organic 100% Eco-Friendly Made in Canada conditioner 1 Truly Earth Friend body soap 1 Paid parking lot on premises – CAD20 per day, 15 spaces 1 Organic shampoo 1 Dedicated workspace: office chair, desk, and table 1 danby electric stove 1 24" HDTV with Apple TV, Netflix 1 BC Bud Skin Care body soap 1 OGX Coconut Milk shampoo 1 75" HDTV with Netflix, Amazon Prime Video 1 sono conditioner 1 General Electric refrigerator 1 Paid parking lot on premises – CAD30 per day 1 58" HDTV with Netflix 1 Paid parking lot on premises – CAD19 per day, 1 space 1 50" HDTV with Netflix 1 Pantene shampoo 1 Shared outdoor heated pool 1 55" HDTV with Chromecast, Netflix, Roku 1 mini refrigerator 1 Two burner only stove top induction stove 1 Children’s books and toys for ages 0-2 years old and 2-5 years old 1 Teenage Engineering X Ikea Frekvens 4x8 "Bluetooth Speaker Bluetooth sound system 1 32" HDTV with Chromecast 1 miele oven 1 Mint, all natural, from The Soap Dispensary body soap 1 Marshall refrigerator 1 Marc Anthony shampoo 1 House of Marley Bluetooth sound system 1 Pantene conditioner 1 Shared outdoor pool 1 Aveeno Organic 100% Eco-Friendly Made in Canada body soap 1 55" HDTV with Roku 1 miele refrigerator 1 KIRKLAND body soap 1 locally made by Howe Sound Soapworks body soap 1 Samsung electric stove 1 Miele oven 1 Wifi – 600 Mbps 1 Clothing storage: dresser and wardrobe 1 Bose SoundLink Mini Bluetooth sound system 1 Paid street parking off premises – CAD1 per hour 1 Dove shampoo 1 aveena body soap 1 32" HDTV with standard cable 1 HDTV with Netflix, premium cable, standard cable 1 Toaster oven electric stove 1 Private sauna 1 Wifi – 280 Mbps 1 Paid parking garage on premises – CAD50 per day, 1 space 1 Dedicated workspace: office chair, desk, table, and monitor 1 Dedicated workspace: table, office chair, desk, and monitor 1 55" HDTV with standard cable 1 50" HDTV with Netflix, Roku 1 Samsung Bluetooth sound system 1 HDTV with Netflix, premium cable 1 Sub-zero refrigerator 1 Sonos Beam Bluetooth sound system 1 Bosch stainless steel electric stove 1 Whirlpool stainless steel electric stove 1 Haier stainless steel gas stove 1 aesoap conditioner 1 365 by Whole Foods shampoo 1 Dove conditioner 1 Liquid Body Wash body soap 1 Ivory body soap 1 Natural Organic conditioner 1 kirkland shampoo 1 Frigidaire stainless steel oven 1 Organic body soap 1 Paid parking lot on premises – 1 space 1 Truly Earth Friend conditioner 1 Sonos Bluetooth sound system 1 HDTV with standard cable 1 Marantz sound system with aux 1 Shared indoor lap pool 1 Google Nest Mini Bluetooth sound system 1 Private pool 1 365 by Whole Foods body soap 1 Shared outdoor rooftop pool 1 Organic conditioner 1 LG sound system with Bluetooth and aux 1 Bosch refrigerator 1 Clothing storage: wardrobe and dresser 1 55" HDTV with Netflix, Roku 1 Sonos Bluetooth sound system 1 Kevin Murphy shampoo 1 42" HDTV with HBO Max, Netflix, premium cable 1 Technics sound system with aux 1 Paid parking garage on premises – CAD5 per day, 1 space 1 mini fridge with feezer refrigerator 1 kirkland body soap 1 Olay body soap 1 TV with Amazon Prime Video, Netflix 1 High End Audiophile sound system with Bluetooth and aux 1 Dedicated workspace: desk, monitor, and office chair 1 Electrolux refrigerator 1 Axe, L'Oreal, Dove body soap 1 Frigidaire - conventional stainless steel induction stove 1 Game console: Xbox 360 1 Wolf stainless steel gas stove 1 Focal sound system 1 HDTV with Apple TV, Netflix, HBO Max, Amazon Prime Video, standard cable 1 46" HDTV with standard cable 1 60" HDTV with Netflix, Apple TV 1 Game console: PS3 1 Breville toaster oven stainless steel oven 1 2 burner convection oven stove top stove 1 Alaffia - Ethical Trade, Handcrafted & Biodegradable shampoo 1 Paid dryer–In unit 1 Dedicated workspace: monitor, desk, table, and office chair 1 Alexa in kitchen as well as speakers attached to tv sound system in the living room sound system with Bluetooth and aux 1 sonos Bluetooth sound system 1 Natural Organic body soap 1 Marc Anthony conditioner 1 Paid parking lot on premises 1 Top End Stainless Steel refrigerator 1 Free residential garage on premises – 2 spaces 1 Paid parking garage off premises – CAD16 per day 1 Free parking on premises – 2 spaces 1 Haier stainless steel oven 1 Mint, all natural, from The Soap Dispensary shampoo 1 Frigidaire stainless steel electric stove 1 Alaffia - Ethical Trade, Handcrafted & Biodegradable conditioner 1 Jergens body soap 1 Game console: PS4 and Xbox 360 1 40" HDTV 1 HDTV with Chromecast, standard cable 1 48" HDTV with Netflix 1 Pristine/Hotel Grade Small Tube shampoo 1 Varied body soap 1 Paid washer–In unit 1 Tresemme or Dove shampoo 1 AEG stainless steel gas stove 1 70" HDTV with Netflix, standard cable 1 Ikea hot plate stainless steel electric stove 1 Shared indoor heated pool 1 Paid parking garage off premises – CAD20 per day 1 Whirlpool stainless steel oven 1 Game console: PS5 1 Shared indoor pool 1 Bose sound system 1 Samsung Sound Bar Bluetooth sound system 1 40" HDTV with Chromecast, Netflix 1 Liebherr refrigerator 1 Clothing storage: wardrobe, closet, and walk-in closet 1 KEF sound system with Bluetooth and aux 1 Truly Earth Friend shampoo 1 Tresemme or Dove conditioner 1 Naturally Made conditioner 1 Geneva Bluetooth sound system 1 Stainless steel induction stove 1 49" HDTV with Amazon Prime Video, Netflix 1 46" HDTV with Chromecast 1 Sound system with aux 1 Porter&Charles oven 1 HDTV with Amazon Prime Video, standard cable, Netflix, HBO Max 1 Naturally Made body soap 1 danby stove 1 Viking Profesionnal stainless steel oven 1 100% Organic Kirkland body soap 1 Meile refrigerator 1 Sony Bluetooth sound system 1 52" HDTV with Roku, Netflix 1 Vintage 70's record player, receiver, and Danish cabinet speakers. Also, a slightly newer, but still retro, cassette player. sound system with Bluetooth and aux 1 Toaster oven only oven 1 Varies, but usually Dr. Bronners. I also have Le Labo from Fairmont body soap 1 42" HDTV with Netflix, Roku, Apple TV 1 sonos, bose Bluetooth sound system 1 Kitchenaid Gas Oven stainless steel oven 1 Smart tv sound system with Bluetooth and aux 1 Alexa Bluetooth sound system 1 Miele gas stove 1 Blomberg, gas stainless steel oven 1 Miele stainless steel electric stove 1 BOSE Bluetooth sound system 1 TV with Netflix, Roku 1 HDTV with Amazon Prime Video, Netflix 1 Free driveway parking on premises – 3 spaces 1 Free washer 1 Paid parking lot on premises – CAD20 per day, 1 space 1 Wifi – 350 Mbps 1 Kevin Murphy conditioner 1 gas stainless steel oven 1 I have a series of bluetooth speakers. Bluetooth sound system 1 32" TV with Netflix, premium cable, standard cable 1 OGX Coconut Milk conditioner 1 pearl and dove in bathroom and President's choice hand soap pump. body soap 1 Paid parking garage on premises – CAD20 per day, 1 space 1 KIRKLAND conditioner 1 Clothing storage: closet, dresser, and wardrobe 1 55" HDTV with Amazon Prime Video, Netflix 1 varied conditioner 1 Kitchenaid gas stove 1 Bosch stainless steel oven 1 Samsung oven 1 60" HDTV with Amazon Prime Video, Netflix 1 Free carport on premises – 3 spaces 1 Google mini at your service in the suite for weather updates, restaurant recommendations, latest news, etc. sound system 1 wow stainless steel oven 1 TV with Chromecast 1 55" HDTV with Apple TV, Amazon Prime Video, Netflix, standard cable 1 Dedicated workspace: desk, office chair, and table 1 TV with Netflix, standard cable 1 HDTV with Netflix, premium cable, HBO Max, standard cable 1 32" HDTV with Netflix, premium cable 1 Dr Bronners body soap 1 with crisper and freezer compartments refrigerator 1 LG stainless steel oven 1 100% Organic Kirkland shampoo 1 65" HDTV with premium cable 1 Kirkland conditioner 1 Wolf stainless steel oven 1 42" TV with Netflix, premium cable, standard cable 1 kirkland conditioner 1 Pantene conditioner 1 Varies, but usually Nexxus conditioner 1 75" HDTV 1 Mint, all natural, from The Soap Dispensary conditioner 1 Shared gym nearby 1 dtype: int64
ax = amenity_series.plot(kind='bar')
#ax = plt.bar(amenity_series.index, amenity_series.values, color='red')
#axes = sns.barplot(x=amenity_series.index, y=amenity_series.values)
# Turn off x-axis, otherwise x tick labels are a mess
ax.set_xticks([])
ax.set_xlabel('Amenities')
ax.set_ylabel('Count');
One way to deal with this would be to pull out only the most popular amenities.
amenity_series.describe()
count 495.000000 mean 243.573737 std 760.174209 min 1.000000 25% 1.000000 50% 1.000000 75% 18.500000 max 4226.000000 dtype: float64
amenity_series.index[amenity_series >= 20].size
123
amenity_series.index[amenity_series >= 1000].size
38
An arbitrary threshold of having at least a count of 1000 might be reasonable
amenities_to_keep = amenity_series.index[amenity_series >= 1000]
# Make an zeros df
amenities_df = pd.DataFrame(np.zeros([listings_room.shape[0], amenities_to_keep.size]), columns=amenities_to_keep)
# Fill in the df by for loop, 1/0, basically dummy columns.
# Seems pretty slow.
for i, item in enumerate(listings_room['amenities']):
amenities = json.loads(item)
for amenity in amenities:
amenities_df.iloc[i,:].loc[amenity] = 1
# Checking to see if correctly populated, by comparing to next cell
amenities_df.head()
| Wifi | Heating | Smoke alarm | Essentials | Kitchen | Long term stays allowed | Hangers | Washer | Dryer | Hair dryer | Hot water | Iron | Shampoo | Dedicated workspace | TV | Carbon monoxide alarm | Dishes and silverware | Fire extinguisher | Refrigerator | Cooking basics | Microwave | Coffee maker | Stove | Oven | Free parking on premises | Private entrance | Bed linens | Free street parking | Dishwasher | First aid kit | Patio or balcony | Extra pillows and blankets | Elevator | Cable TV | Luggage dropoff allowed | Air conditioning | Gym | Backyard | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 2 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 |
| 3 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
| 4 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 |
listings_room.iloc[0,:]['amenities']
'["Iron", "Dryer", "Bed linens", "Cooking basics", "Elevator", "Hot water", "Indoor fireplace", "Dishes and silverware", "Stove", "Microwave", "Long term stays allowed", "TV with standard cable", "Refrigerator", "Hangers", "Pool", "Air conditioning", "Hair dryer", "Cable TV", "Gym", "Washer", "Wifi", "Carbon monoxide alarm", "Dedicated workspace", "Free parking on premises", "Smoke alarm", "Heating", "Kitchen", "Coffee maker", "Dishwasher", "Host greets you"]'
I'll prefix the columns in amenities_df, then drop the amenities column in listings_room, before glueing amenities_df back on:
amenities_df.columns = 'amenity_' + amenities_df.columns.str.lower()
listings_room = listings_room.drop(labels=['amenities'], axis=1)
listings_room = pd.concat([listings_room, amenities_df], axis=1)
listings_room.head()
| property_type | room_type | accommodates | bathrooms | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Entire condominium | Entire home/apt | 5 | NaN | 2 baths | 2.0 | 2.0 | f | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 1 | Entire condominium | Entire home/apt | 2 | NaN | 1 bath | 1.0 | 1.0 | f | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 2 | Entire apartment | Entire home/apt | 2 | NaN | 1 bath | 1.0 | 1.0 | f | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 |
| 3 | Entire house | Entire home/apt | 4 | NaN | 1 bath | 1.0 | 2.0 | t | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
| 4 | Entire guest suite | Entire home/apt | 4 | NaN | 1 bath | 2.0 | 3.0 | t | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 |
Next, I'll extract numeric values from the bathroom text.
listings_room['bathrooms_text'].value_counts()
1 bath 2442 2 baths 610 1 shared bath 409 1 private bath 290 1.5 baths 185 2.5 baths 102 2 shared baths 62 3 baths 51 1.5 shared baths 44 3.5 baths 29 4 baths 17 0 shared baths 9 3 shared baths 9 0 baths 8 4 shared baths 5 6 baths 5 5 baths 4 Shared half-bath 4 4.5 baths 3 5.5 baths 2 7 baths 2 Private half-bath 2 3.5 shared baths 1 Half-bath 1 6.5 baths 1 Name: bathrooms_text, dtype: int64
All the values have a numeric value in the front, unless they are half-baths. I'll code half-baths as 0.5 bathrooms. I'll ignore the "shared" or "private" status, as it does not seem to be totally correlated with the type of property.
def convert_bathrooms(txt):
"""
Convert bathroom description string to a float.
If the txt begins with a number, grabs the number by splitting on whitespace and returns it.
Otherwise, it's a half bath, so return 0.5.
Returns NaN if NaN encountered.
"""
if pd.isna(txt):
return np.nan
elif txt[0].isnumeric():
return float(txt.split(" ")[0])
else:
return 0.5
# Testing the bathroom text conversion
listings_room['bathrooms_text'].apply(convert_bathrooms).value_counts()
1.0 3141 2.0 672 1.5 229 2.5 102 3.0 60 3.5 30 4.0 22 0.0 17 0.5 7 6.0 5 5.0 4 4.5 3 5.5 2 7.0 2 6.5 1 Name: bathrooms_text, dtype: int64
col_apply_inplace(listings_room, ['bathrooms_text'], convert_bathrooms)
bathrooms is all NaN, so I'll just drop it
listings_room['bathrooms'].isna().mean()
1.0
listings_room.drop(labels=['bathrooms'], axis=1, inplace=True)
listings_room.head()
| property_type | room_type | accommodates | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Entire condominium | Entire home/apt | 5 | 2.0 | 2.0 | 2.0 | f | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 1 | Entire condominium | Entire home/apt | 2 | 1.0 | 1.0 | 1.0 | f | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 |
| 2 | Entire apartment | Entire home/apt | 2 | 1.0 | 1.0 | 1.0 | f | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 |
| 3 | Entire house | Entire home/apt | 4 | 1.0 | 1.0 | 2.0 | t | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 |
| 4 | Entire guest suite | Entire home/apt | 4 | 1.0 | 2.0 | 3.0 | t | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 |
property_type and room_type seem to encode similar information, except property_type is much more diverse.
listings_room['property_type'].value_counts()
Entire apartment 1012 Entire condominium 816 Entire house 642 Private room in house 561 Entire guest suite 513 Private room in apartment 155 Entire loft 112 Entire townhouse 91 Entire serviced apartment 69 Private room in condominium 63 Entire guesthouse 50 Private room in townhouse 34 Private room in villa 26 Private room in guest suite 21 Room in boutique hotel 19 Entire bungalow 14 Private room in bed and breakfast 10 Shared room in house 9 Entire place 8 Shared room in apartment 7 Room in aparthotel 7 Private room in guesthouse 7 Room in hotel 6 Private room in bungalow 5 Entire villa 5 Camper/RV 4 Entire timeshare 4 Room in bed and breakfast 3 Tiny house 3 Entire cabin 3 Private room in hostel 3 Shared room in loft 2 Entire cottage 2 Private room in loft 2 Boat 2 Shared room in condominium 2 Private room in boat 1 Private room in serviced apartment 1 Houseboat 1 Private room in camper/rv 1 Shared room in hostel 1 Room in serviced apartment 1 Entire floor 1 Name: property_type, dtype: int64
listings_room['room_type'].value_counts()
Entire home/apt 3359 Private room 915 Shared room 21 Hotel room 4 Name: room_type, dtype: int64
Rather than deal with property_type, I'll just drop it
listings_room = listings_room.drop(labels=['property_type'], axis=1)
instant_bookable is t/f representing true/false, so I'll convert that to 1/0's
col_apply_inplace(listings_room,
['instant_bookable'],
convert_tf_to_float)
listings_review¶listings_review.head()
| number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 16 | 0 | 0 | 2011-11-15 | 93.0 | 9.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 |
| 1 | 430 | 3 | 0 | 2010-06-22 | 93.0 | 9.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 |
| 2 | 88 | 4 | 0 | 2011-06-02 | 98.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 3 | 33 | 0 | 0 | 2010-10-03 | 95.0 | 10.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 |
| 4 | 5 | 0 | 0 | 2018-08-04 | 96.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 |
listings_review.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 11 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 number_of_reviews 4299 non-null int64 1 number_of_reviews_ltm 4299 non-null int64 2 number_of_reviews_l30d 4299 non-null int64 3 first_review 3499 non-null object 4 review_scores_rating 3474 non-null float64 5 review_scores_accuracy 3462 non-null float64 6 review_scores_cleanliness 3462 non-null float64 7 review_scores_checkin 3461 non-null float64 8 review_scores_communication 3463 non-null float64 9 review_scores_location 3462 non-null float64 10 review_scores_value 3462 non-null float64 dtypes: float64(7), int64(3), object(1) memory usage: 369.6+ KB
The only thing I'll change here is converting dates to datetime format
col_apply_inplace(listings_review, ['first_review'], convert_str_to_datetime)
listings_review.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 11 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 number_of_reviews 4299 non-null int64 1 number_of_reviews_ltm 4299 non-null int64 2 number_of_reviews_l30d 4299 non-null int64 3 first_review 3499 non-null datetime64[ns] 4 review_scores_rating 3474 non-null float64 5 review_scores_accuracy 3462 non-null float64 6 review_scores_cleanliness 3462 non-null float64 7 review_scores_checkin 3461 non-null float64 8 review_scores_communication 3463 non-null float64 9 review_scores_location 3462 non-null float64 10 review_scores_value 3462 non-null float64 dtypes: datetime64[ns](1), float64(7), int64(3) memory usage: 369.6 KB
Let's put the cleaned data back into one dataframe.
df = pd.concat([listings_summary, listings_host, listings_room, listings_review], axis=1)
df.head()
| id | host_id | neighbourhood | latitude | longitude | room_type | price | minimum_nights | number_of_reviews | last_review | reviews_per_month | calculated_host_listings_count | availability_365 | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | room_type | accommodates | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 10080 | 30899 | Downtown | 49.28872 | -123.12046 | Entire home/apt | 150 | 90 | 16 | 2017-02-26 | 0.14 | 40 | 346 | 2009-08-10 | within an hour | 0.93 | 0.87 | 0.0 | 1.0 | 1.0 | Entire home/apt | 5 | 2.0 | 2.0 | 2.0 | 0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 16 | 0 | 0 | 2011-11-15 | 93.0 | 9.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 |
| 1 | 13358 | 52116 | West End | 49.28201 | -123.12669 | Entire home/apt | 85 | 30 | 430 | 2021-01-01 | 3.27 | 1 | 98 | 2009-11-07 | within a day | 1.00 | 0.57 | 1.0 | 0.0 | 1.0 | Entire home/apt | 2 | 1.0 | 1.0 | 1.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 430 | 3 | 0 | 2010-06-22 | 93.0 | 9.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 |
| 2 | 13490 | 52467 | Kensington-Cedar Cottage | 49.25622 | -123.06607 | Entire home/apt | 145 | 30 | 88 | 2020-10-31 | 0.73 | 1 | 203 | 2009-11-08 | within an hour | 1.00 | 0.78 | 1.0 | 1.0 | 1.0 | Entire home/apt | 2 | 1.0 | 1.0 | 1.0 | 0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 88 | 4 | 0 | 2011-06-02 | 98.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 3 | 14267 | 56030 | Kensington-Cedar Cottage | 49.24922 | -123.08139 | Entire home/apt | 140 | 3 | 33 | 2020-02-07 | 0.26 | 1 | 123 | 2009-11-20 | within a few hours | 1.00 | NaN | 0.0 | 1.0 | 1.0 | Entire home/apt | 4 | 1.0 | 1.0 | 2.0 | 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 33 | 0 | 0 | 2010-10-03 | 95.0 | 10.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 |
| 4 | 16254 | 63238 | Hastings-Sunrise | 49.27721 | -123.04086 | Entire home/apt | 195 | 3 | 5 | 2019-08-19 | 0.15 | 1 | 289 | 2009-12-15 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 | Entire home/apt | 4 | 1.0 | 2.0 | 3.0 | 1 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 5 | 0 | 0 | 2018-08-04 | 96.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 |
df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 75 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 4299 non-null int64 1 host_id 4299 non-null int64 2 neighbourhood 4299 non-null object 3 latitude 4299 non-null float64 4 longitude 4299 non-null float64 5 room_type 4299 non-null object 6 price 4299 non-null int64 7 minimum_nights 4299 non-null int64 8 number_of_reviews 4299 non-null int64 9 last_review 3499 non-null datetime64[ns] 10 reviews_per_month 3499 non-null float64 11 calculated_host_listings_count 4299 non-null int64 12 availability_365 4299 non-null int64 13 host_since 4170 non-null datetime64[ns] 14 host_response_time 2991 non-null object 15 host_response_rate 2991 non-null float64 16 host_acceptance_rate 3099 non-null float64 17 host_is_superhost 4170 non-null float64 18 host_has_profile_pic 4170 non-null float64 19 host_identity_verified 4170 non-null float64 20 room_type 4299 non-null object 21 accommodates 4299 non-null int64 22 bathrooms_text 4297 non-null float64 23 bedrooms 3987 non-null float64 24 beds 4263 non-null float64 25 instant_bookable 4299 non-null int64 26 amenity_wifi 4299 non-null float64 27 amenity_heating 4299 non-null float64 28 amenity_smoke alarm 4299 non-null float64 29 amenity_essentials 4299 non-null float64 30 amenity_kitchen 4299 non-null float64 31 amenity_long term stays allowed 4299 non-null float64 32 amenity_hangers 4299 non-null float64 33 amenity_washer 4299 non-null float64 34 amenity_dryer 4299 non-null float64 35 amenity_hair dryer 4299 non-null float64 36 amenity_hot water 4299 non-null float64 37 amenity_iron 4299 non-null float64 38 amenity_shampoo 4299 non-null float64 39 amenity_dedicated workspace 4299 non-null float64 40 amenity_tv 4299 non-null float64 41 amenity_carbon monoxide alarm 4299 non-null float64 42 amenity_dishes and silverware 4299 non-null float64 43 amenity_fire extinguisher 4299 non-null float64 44 amenity_refrigerator 4299 non-null float64 45 amenity_cooking basics 4299 non-null float64 46 amenity_microwave 4299 non-null float64 47 amenity_coffee maker 4299 non-null float64 48 amenity_stove 4299 non-null float64 49 amenity_oven 4299 non-null float64 50 amenity_free parking on premises 4299 non-null float64 51 amenity_private entrance 4299 non-null float64 52 amenity_bed linens 4299 non-null float64 53 amenity_free street parking 4299 non-null float64 54 amenity_dishwasher 4299 non-null float64 55 amenity_first aid kit 4299 non-null float64 56 amenity_patio or balcony 4299 non-null float64 57 amenity_extra pillows and blankets 4299 non-null float64 58 amenity_elevator 4299 non-null float64 59 amenity_cable tv 4299 non-null float64 60 amenity_luggage dropoff allowed 4299 non-null float64 61 amenity_air conditioning 4299 non-null float64 62 amenity_gym 4299 non-null float64 63 amenity_backyard 4299 non-null float64 64 number_of_reviews 4299 non-null int64 65 number_of_reviews_ltm 4299 non-null int64 66 number_of_reviews_l30d 4299 non-null int64 67 first_review 3499 non-null datetime64[ns] 68 review_scores_rating 3474 non-null float64 69 review_scores_accuracy 3462 non-null float64 70 review_scores_cleanliness 3462 non-null float64 71 review_scores_checkin 3461 non-null float64 72 review_scores_communication 3463 non-null float64 73 review_scores_location 3462 non-null float64 74 review_scores_value 3462 non-null float64 dtypes: datetime64[ns](3), float64(56), int64(12), object(4) memory usage: 2.5+ MB
Check for duplicated rows:
df.duplicated().sum()
0
There are two duplicated columns:
df.columns[df.columns.duplicated()]
Index(['room_type', 'number_of_reviews'], dtype='object')
Drop the duplicated columns:
df = df.loc[:, ~df.columns.duplicated()]
Rearrange the columns to put some properties from listings_summary next to other grouped properties
df.columns
Index(['id', 'host_id', 'neighbourhood', 'latitude', 'longitude', 'room_type',
'price', 'minimum_nights', 'number_of_reviews', 'last_review',
'reviews_per_month', 'calculated_host_listings_count',
'availability_365', 'host_since', 'host_response_time',
'host_response_rate', 'host_acceptance_rate', 'host_is_superhost',
'host_has_profile_pic', 'host_identity_verified', 'accommodates',
'bathrooms_text', 'bedrooms', 'beds', 'instant_bookable',
'amenity_wifi', 'amenity_heating', 'amenity_smoke alarm',
'amenity_essentials', 'amenity_kitchen',
'amenity_long term stays allowed', 'amenity_hangers', 'amenity_washer',
'amenity_dryer', 'amenity_hair dryer', 'amenity_hot water',
'amenity_iron', 'amenity_shampoo', 'amenity_dedicated workspace',
'amenity_tv', 'amenity_carbon monoxide alarm',
'amenity_dishes and silverware', 'amenity_fire extinguisher',
'amenity_refrigerator', 'amenity_cooking basics', 'amenity_microwave',
'amenity_coffee maker', 'amenity_stove', 'amenity_oven',
'amenity_free parking on premises', 'amenity_private entrance',
'amenity_bed linens', 'amenity_free street parking',
'amenity_dishwasher', 'amenity_first aid kit',
'amenity_patio or balcony', 'amenity_extra pillows and blankets',
'amenity_elevator', 'amenity_cable tv',
'amenity_luggage dropoff allowed', 'amenity_air conditioning',
'amenity_gym', 'amenity_backyard', 'number_of_reviews_ltm',
'number_of_reviews_l30d', 'first_review', 'review_scores_rating',
'review_scores_accuracy', 'review_scores_cleanliness',
'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value'],
dtype='object')
df = df[['id', 'neighbourhood', 'latitude', 'longitude',
'price', 'minimum_nights',
'availability_365',
# Host properties
'host_id',
'calculated_host_listings_count',
'host_since', 'host_response_time',
'host_response_rate', 'host_acceptance_rate', 'host_is_superhost',
'host_has_profile_pic', 'host_identity_verified',
# Room properties
'accommodates',
'room_type',
'bathrooms_text', 'bedrooms', 'beds', 'instant_bookable',
'amenity_wifi', 'amenity_heating', 'amenity_smoke alarm',
'amenity_essentials', 'amenity_kitchen',
'amenity_long term stays allowed', 'amenity_hangers', 'amenity_washer',
'amenity_dryer', 'amenity_hair dryer', 'amenity_hot water',
'amenity_iron', 'amenity_shampoo', 'amenity_dedicated workspace',
'amenity_tv', 'amenity_carbon monoxide alarm',
'amenity_dishes and silverware', 'amenity_fire extinguisher',
'amenity_refrigerator', 'amenity_cooking basics', 'amenity_microwave',
'amenity_coffee maker', 'amenity_stove', 'amenity_oven',
'amenity_free parking on premises', 'amenity_private entrance',
'amenity_bed linens', 'amenity_free street parking',
'amenity_dishwasher', 'amenity_first aid kit',
'amenity_patio or balcony', 'amenity_extra pillows and blankets',
'amenity_elevator', 'amenity_cable tv',
'amenity_luggage dropoff allowed', 'amenity_air conditioning',
'amenity_gym', 'amenity_backyard',
# Review properties
'number_of_reviews', 'number_of_reviews_ltm',
'number_of_reviews_l30d', 'first_review', 'last_review',
'reviews_per_month',
'review_scores_rating',
'review_scores_accuracy', 'review_scores_cleanliness',
'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value']]
df.head(1)
| id | neighbourhood | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 10080 | Downtown | 49.28872 | -123.12046 | 150 | 90 | 346 | 30899 | 40 | 2009-08-10 | within an hour | 0.93 | 0.87 | 0.0 | 1.0 | 1.0 | 5 | Entire home/apt | 2.0 | 2.0 | 2.0 | 0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 16 | 0 | 0 | 2011-11-15 | 2017-02-26 | 0.14 | 93.0 | 9.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 |
df.shape
(4299, 73)
Here I'll answer several research questions to guide our exploration of the data.
Before we begin, let's define a helper function to display links to AirBnB listings:
def display_link(id, prefix='https://www.airbnb.ca/rooms/'):
"""
Displays a link for a given AirBnB listing, opens in a new tab.
"""
display(HTML(f"<a href={prefix+str(id)} target=_blank rel=\"noopener noreferrer nofollow\">{id}</a>"))
display_link(248014)
# Make points out of latitude and longitude
# Use EPSG:4326 coordinates as a default
locations = gpd.GeoDataFrame(df[['latitude', 'longitude']], geometry=gpd.points_from_xy(df['longitude'], df['latitude']), crs='EPSG:4326')
locations.head(1)
| latitude | longitude | geometry | |
|---|---|---|---|
| 0 | 49.28872 | -123.12046 | POINT (-123.12046 49.28872) |
# Delineates the locations of each neighbourhood
neighbourhoods = gpd.read_file('data/neighbourhoods.geojson')
# Drop neighbourhood group as it is empty
neighbourhoods.drop(labels='neighbourhood_group', axis=1, inplace=True)
neighbourhoods.head()
| neighbourhood | geometry | |
|---|---|---|
| 0 | Dunbar Southlands | MULTIPOLYGON (((-123.17909 49.21708, -123.1791... |
| 1 | Renfrew-Collingwood | MULTIPOLYGON (((-123.05888 49.23286, -123.0588... |
| 2 | Hastings-Sunrise | MULTIPOLYGON (((-123.05660 49.26215, -123.0566... |
| 3 | Oakridge | MULTIPOLYGON (((-123.14015 49.21935, -123.1401... |
| 4 | Downtown Eastside | MULTIPOLYGON (((-123.09988 49.27604, -123.1022... |
# Check the coordinate reference system
neighbourhoods.crs
<Geographic 2D CRS: EPSG:4326> Name: WGS 84 Axis Info [ellipsoidal]: - Lat[north]: Geodetic latitude (degree) - Lon[east]: Geodetic longitude (degree) Area of Use: - name: World. - bounds: (-180.0, -90.0, 180.0, 90.0) Datum: World Geodetic System 1984 ensemble - Ellipsoid: WGS 84 - Prime Meridian: Greenwich
A coordinate reference system is a set of rules that converts locations to a set of points that can be plotted. EPSG:4326 is a common default, but because I want to use contextily to grab a background map for the plot, I'll need to convert to another coordinate system EPSG:3857 to the contextily maps.
neighbourhoods.head()
| neighbourhood | geometry | |
|---|---|---|
| 0 | Dunbar Southlands | MULTIPOLYGON (((-123.17909 49.21708, -123.1791... |
| 1 | Renfrew-Collingwood | MULTIPOLYGON (((-123.05888 49.23286, -123.0588... |
| 2 | Hastings-Sunrise | MULTIPOLYGON (((-123.05660 49.26215, -123.0566... |
| 3 | Oakridge | MULTIPOLYGON (((-123.14015 49.21935, -123.1401... |
| 4 | Downtown Eastside | MULTIPOLYGON (((-123.09988 49.27604, -123.1022... |
p_mercator = 'EPSG:3857' # Pseudo-Mercator projection, as this is what map services background is in
# Plot the neighbourhoods
ax = neighbourhoods.to_crs(p_mercator).plot(figsize=(20,20),
facecolor='#0000FF33',
edgecolor='white',
linewidth=2.5)
# Plot the listing locations
locations.to_crs(p_mercator).plot(color='yellow', markersize=5, ax=ax,alpha=0.7)
# Set up the limits for a larger view of the Vancouver area
lims = np.array(neighbourhoods.to_crs(p_mercator).total_bounds) # xmin, ymin, xmax, ymax
margin = 5000
lims = lims + np.array([-margin, -margin, margin, margin])
ax.set_xlim(lims[0], lims[2])
ax.set_ylim(lims[1], lims[3])
# Plot the background map tile with contextily
ctx.add_basemap(ax)
# Turn off seaborn theme lines and axes
plt.axis('off');
# Add neighbourhood names:
# See https://stackoverflow.com/questions/38899190/geopandas-label-polygons
# 1) Get points within each neighbourhood (tuples of xy's)
label_coords = neighbourhoods['geometry'].to_crs(p_mercator).apply(lambda x: x.centroid.coords[0])
# 2) Plot them
for i, nbh in neighbourhoods['neighbourhood'].iteritems():
# Add \n for better text placement
nbh = nbh.replace(' ', '\n').replace('-', '-\n')
plt.text(x=label_coords.iloc[i][0], y=label_coords.iloc[i][1] , s=nbh,
horizontalalignment='center', color='white', size=15,
bbox=dict(facecolor='black', alpha=0.5, boxstyle="Round, pad=0.5, rounding_size=1"))
Looks like Downtown is a hotspot of listings, let's confirm:
df['neighbourhood'].value_counts()
Downtown 1153 Kitsilano 348 West End 347 Kensington-Cedar Cottage 278 Mount Pleasant 246 Downtown Eastside 232 Riley Park 227 Grandview-Woodland 199 Renfrew-Collingwood 159 Hastings-Sunrise 151 Fairview 132 Dunbar Southlands 128 Marpole 103 Sunset 88 West Point Grey 75 Oakridge 74 Shaughnessy 69 Arbutus Ridge 64 South Cambie 58 Killarney 55 Victoria-Fraserview 54 Kerrisdale 42 Strathcona 17 Name: neighbourhood, dtype: int64
Prices in this dataset are whatever was scraped off the AirBNB website. It does not account for complexities such as surge pricing or fine-grained host adjustments by date, nor additional fees and taxes.
Here is the overall distribution of prices. The prices are right-skewed, with some a smattering of very expensive listings, while the median is 115 CAD per night.
df['price'].describe()
count 4299.000000 mean 151.511980 std 152.606141 min 19.000000 25% 83.000000 50% 115.000000 75% 175.000000 max 3250.000000 Name: price, dtype: float64
df['price'].median()
115.0
# Linear price scale plot
fig, ax = plt.subplots(figsize=(20,9));
sns.histplot(data=df, x='price', ax=ax, kde=True);
# Log scale plot of the above
fig, ax = plt.subplots(figsize=(20,9));
sns.histplot(data=df, x='price', ax=ax);
ax.set_yscale('log')
fig, ax = plt.subplots(figsize=(20,9))
# Plotting by median price value
order = df.groupby(by='neighbourhood')['price'].median().sort_values().index
sns.stripplot(data=df, x='neighbourhood', y='price', order=order, ax=ax, s=3, alpha=.5, jitter=0.25, edgecolor='#333333', linewidth=.5);
sns.boxplot(data=df, x='neighbourhood', y='price', order=order, ax=ax);
plt.xticks(rotation=45, ha='right', size=15);
plt.yscale('log')
y_ticks = list(chain(range(50,500,50), range(500, 1000, 100), range(1000, 5000, 1000)))
plt.yticks(ticks=y_ticks, labels=y_ticks);
Here, I'll make a correlation matrix of quantitative variables to price.
# Summary stats of the quantitative vars
df.describe()
| id | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| count | 4.299000e+03 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4.299000e+03 | 4299.000000 | 2991.000000 | 3099.000000 | 4170.000000 | 4170.000000 | 4170.000000 | 4299.000000 | 4297.000000 | 3987.000000 | 4263.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 4299.000000 | 3499.000000 | 3474.000000 | 3462.000000 | 3462.000000 | 3461.000000 | 3463.000000 | 3462.000000 | 3462.000000 |
| mean | 2.930888e+07 | 49.263773 | -123.112936 | 151.511980 | 19.002326 | 126.424750 | 1.147540e+08 | 5.643871 | 0.921792 | 0.837606 | 0.359472 | 0.997362 | 0.874101 | 3.362875 | 1.292762 | 1.569852 | 1.780202 | 0.329844 | 0.983019 | 0.962549 | 0.956502 | 0.930682 | 0.927192 | 0.905559 | 0.902768 | 0.857874 | 0.850198 | 0.822749 | 0.770877 | 0.758316 | 0.753198 | 0.751570 | 0.722959 | 0.710165 | 0.660851 | 0.637358 | 0.630379 | 0.610607 | 0.595720 | 0.561061 | 0.556176 | 0.540823 | 0.533612 | 0.508258 | 0.482670 | 0.455687 | 0.434752 | 0.411956 | 0.387299 | 0.359386 | 0.324261 | 0.290533 | 0.261224 | 0.260991 | 0.260758 | 0.260758 | 34.227960 | 4.371947 | 0.411956 | 1.241252 | 95.052389 | 9.692085 | 9.531774 | 9.789078 | 9.803350 | 9.780763 | 9.420277 |
| std | 1.415329e+07 | 0.019886 | 0.037472 | 152.606141 | 34.112295 | 125.528629 | 1.170448e+08 | 13.494667 | 0.207237 | 0.249665 | 0.479903 | 0.051299 | 0.331776 | 1.918289 | 0.610889 | 0.880362 | 1.179865 | 0.470211 | 0.129214 | 0.189885 | 0.204000 | 0.254024 | 0.259851 | 0.292475 | 0.296308 | 0.349220 | 0.356919 | 0.381925 | 0.420317 | 0.428154 | 0.431200 | 0.432153 | 0.447589 | 0.453738 | 0.473475 | 0.480819 | 0.482758 | 0.487669 | 0.490809 | 0.496315 | 0.496892 | 0.498389 | 0.498927 | 0.499990 | 0.499758 | 0.498090 | 0.495782 | 0.492245 | 0.487190 | 0.479876 | 0.468153 | 0.454061 | 0.439353 | 0.439226 | 0.439099 | 0.439099 | 59.378906 | 9.308805 | 1.223835 | 1.392151 | 7.831887 | 0.822566 | 0.921979 | 0.696819 | 0.699319 | 0.576081 | 0.870973 |
| min | 1.008000e+04 | 49.202960 | -123.217570 | 19.000000 | 1.000000 | 0.000000 | 6.033000e+03 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | 0.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.010000 | 20.000000 | 2.000000 | 2.000000 | 2.000000 | 2.000000 | 2.000000 | 2.000000 |
| 25% | 1.913710e+07 | 49.251835 | -123.130120 | 83.000000 | 2.000000 | 0.000000 | 1.311367e+07 | 1.000000 | 0.940000 | 0.800000 | 0.000000 | 1.000000 | 1.000000 | 2.000000 | 1.000000 | 1.000000 | 1.000000 | 0.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | 0.000000 | 0.000000 | 0.250000 | 94.000000 | 10.000000 | 9.000000 | 10.000000 | 10.000000 | 10.000000 | 9.000000 |
| 50% | 3.166959e+07 | 49.269550 | -123.116670 | 115.000000 | 4.000000 | 89.000000 | 6.448831e+07 | 1.000000 | 1.000000 | 0.950000 | 0.000000 | 1.000000 | 1.000000 | 3.000000 | 1.000000 | 1.000000 | 1.000000 | 0.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 9.000000 | 0.000000 | 0.000000 | 0.740000 | 97.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 |
| 75% | 4.204185e+07 | 49.279220 | -123.091725 | 175.000000 | 30.000000 | 225.000000 | 2.061525e+08 | 3.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 4.000000 | 1.500000 | 2.000000 | 2.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 42.000000 | 4.000000 | 0.000000 | 1.760000 | 100.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 |
| max | 4.915400e+07 | 49.294360 | -123.017390 | 3250.000000 | 399.000000 | 365.000000 | 3.964060e+08 | 83.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 16.000000 | 7.000000 | 13.000000 | 13.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 1.000000 | 662.000000 | 104.000000 | 24.000000 | 14.660000 | 100.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 |
# All columns with numerical data types
df.dtypes[(df.dtypes == 'float64') | (df.dtypes == 'int64')]
id int64 latitude float64 longitude float64 price int64 minimum_nights int64 availability_365 int64 host_id int64 calculated_host_listings_count int64 host_response_rate float64 host_acceptance_rate float64 host_is_superhost float64 host_has_profile_pic float64 host_identity_verified float64 accommodates int64 bathrooms_text float64 bedrooms float64 beds float64 instant_bookable int64 amenity_wifi float64 amenity_heating float64 amenity_smoke alarm float64 amenity_essentials float64 amenity_kitchen float64 amenity_long term stays allowed float64 amenity_hangers float64 amenity_washer float64 amenity_dryer float64 amenity_hair dryer float64 amenity_hot water float64 amenity_iron float64 amenity_shampoo float64 amenity_dedicated workspace float64 amenity_tv float64 amenity_carbon monoxide alarm float64 amenity_dishes and silverware float64 amenity_fire extinguisher float64 amenity_refrigerator float64 amenity_cooking basics float64 amenity_microwave float64 amenity_coffee maker float64 amenity_stove float64 amenity_oven float64 amenity_free parking on premises float64 amenity_private entrance float64 amenity_bed linens float64 amenity_free street parking float64 amenity_dishwasher float64 amenity_first aid kit float64 amenity_patio or balcony float64 amenity_extra pillows and blankets float64 amenity_elevator float64 amenity_cable tv float64 amenity_luggage dropoff allowed float64 amenity_air conditioning float64 amenity_gym float64 amenity_backyard float64 number_of_reviews int64 number_of_reviews_ltm int64 number_of_reviews_l30d int64 reviews_per_month float64 review_scores_rating float64 review_scores_accuracy float64 review_scores_cleanliness float64 review_scores_checkin float64 review_scores_communication float64 review_scores_location float64 review_scores_value float64 dtype: object
Many of the numerical columns are actually T/F data encoded as 1/0's. Some are also ordinal. I'll pick out the true quantitative variables, then plot their correlation against the other quantitative variables. I'll plot the correlation coefficients in the top half of the grid.
quant_vars = ['price',
'minimum_nights',
'availability_365',
'calculated_host_listings_count',
'host_response_rate',
'host_acceptance_rate',
'accommodates',
'bathrooms_text',
'bedrooms',
'beds',
'number_of_reviews',
'number_of_reviews_ltm',
'number_of_reviews_l30d',
'reviews_per_month',
'review_scores_rating'
]
# See https://stackoverflow.com/questions/48139899/correlation-matrix-plot-with-coefficients-on-one-side-scatterplots-on-another
# for correlation plotting onto the grid.
g = sns.PairGrid(data=df[quant_vars])
g.map_lower(sns.scatterplot)
g.map_diag(sns.histplot)
# Get pearson correlation to draw onto the plot
def draw_corr(x, y, color=None, label=None):
corr_r = x.corr(y, 'pearson')
corr_text = f"{corr_r:.2f}"
ax = plt.gca() # get current axis
ax.set_axis_off()
# Get the midpoint of the current ax's limits in order to place the text in the middle.
coord_x = (ax.get_xlim()[1] - ax.get_xlim()[0])/2 + ax.get_xlim()[0]
coord_y = (ax.get_ylim()[1] - ax.get_ylim()[0])/2 + ax.get_ylim()[0]
ax.annotate(corr_text, [coord_x, coord_y], ha='center', va='center', fontsize=40)
# Plot a circle of that is more red if correlation is high
w = ax.get_xlim()[1] - ax.get_xlim()[0]
h = ax.get_ylim()[1] - ax.get_ylim()[0]
c_scalar = max(0,corr_r) # Use this to generate an appropriate color
ax.add_patch(Ellipse((coord_x, coord_y), width=w, height=h, color=(1, 1 - c_scalar, 1 - c_scalar)))
g.map_upper(draw_corr)
for ax in g.axes[:,0]:
ax.set_ylabel(ax.get_ylabel() + ' ', fontsize=40, rotation=0, ha='right')
for ax in g.axes[-1,:]:
ax.set_xlabel(ax.get_xlabel()+ ' ', fontsize=40, rotation=45, ha='right')
There are a few patches of higher correlation.
number_of_reviews has several similar columns (number_of_reviews_ltm is reviews in the last twelve months, l30d is last 30 days).Let's take a look at the binary variables (i.e. those that are true/false for a listing).
binary_vars = df.columns[df.nunique() == 2]
binary_vars.size
42
# Note: Log scale for price
fig, ax = plt.subplots(6, 7, figsize=(20,40))
for i, axis in enumerate(ax.flatten()):
data = df[['price', binary_vars[i]]]
sns.boxplot(data=data, x=binary_vars[i], y='price', ax=axis)
sns.stripplot(data=data, x=binary_vars[i], y='price', ax=axis, s=2, alpha=.3, jitter=0.25, edgecolor='#333333', linewidth=.5)
axis.set_yscale('log')
It's hard to tell too much from these boxplots alone. Some of the variables are very unbalanced between groups. As well, the outliers could be dragging the means by quite a bit (plots are log scale on price).
To help get a sense of how different the groups are between each other per variable, I'll use t-tests and Mood's test (for the mean and the median respectively) on these variables.
These tests are meant here to be interpreted as a ranking statistic, rather than a strict test of significance.
# Get p values from T-tests (for means) and Mood's test (for medians)
pvals = []
for feature in binary_vars:
grouped = df.groupby(feature)['price']
a = grouped.get_group(0)
b = grouped.get_group(1)
result = (feature,
ttest_ind(a, b).pvalue,
mood(a, b)[1],
a.mean().round(2),
b.mean().round(2),
(a.mean() - b.mean()).round(2),
a.median().round(2),
b.median().round(2),
(a.median() - b.median()).round(2))
pvals.append(result)
pvals = pd.DataFrame(pvals, columns=['feature', 'ttest_p', 'mood_p',
'0_mean', '1_mean', 'mean_diff',
'0_median', '1_median', 'median_diff'])
# Multiple hypothesis correction
pvals['ttest_p'] = multipletests(pvals['ttest_p'], method='bonferroni', alpha=0.05)[1]
pvals['mood_p'] = multipletests(pvals['mood_p'], method='bonferroni', alpha=0.05)[1]
pvals.sort_values('ttest_p').head(10)
| feature | ttest_p | mood_p | 0_mean | 1_mean | mean_diff | 0_median | 1_median | median_diff | |
|---|---|---|---|---|---|---|---|---|---|
| 32 | amenity_dishwasher | 7.082809e-22 | 3.752096e-03 | 131.23 | 177.88 | -46.64 | 100.0 | 139.0 | -39.0 |
| 39 | amenity_air conditioning | 2.652683e-15 | 1.000000e+00 | 139.99 | 184.12 | -44.13 | 105.0 | 140.0 | -35.0 |
| 34 | amenity_patio or balcony | 3.337291e-12 | 1.000000e+00 | 137.73 | 173.32 | -35.59 | 102.0 | 130.0 | -28.0 |
| 18 | amenity_tv | 7.461088e-12 | 5.170629e-24 | 123.90 | 162.09 | -38.19 | 90.0 | 123.0 | -33.0 |
| 16 | amenity_shampoo | 1.589893e-10 | 6.473033e-05 | 123.35 | 160.74 | -37.39 | 99.0 | 120.0 | -21.0 |
| 28 | amenity_free parking on premises | 2.201284e-10 | 1.000000e+00 | 134.38 | 166.48 | -32.10 | 106.0 | 120.0 | -14.0 |
| 15 | amenity_iron | 4.760851e-10 | 7.319899e-06 | 123.59 | 160.41 | -36.81 | 98.0 | 120.0 | -22.0 |
| 33 | amenity_first aid kit | 2.852148e-08 | 1.874784e-01 | 139.52 | 168.64 | -29.12 | 110.0 | 120.0 | -10.0 |
| 29 | amenity_private entrance | 1.763403e-07 | 2.928046e-04 | 137.63 | 164.94 | -27.31 | 105.5 | 120.0 | -14.5 |
| 13 | amenity_hair dryer | 4.241505e-07 | 3.598916e-05 | 122.83 | 157.69 | -34.86 | 97.0 | 120.0 | -23.0 |
pvals.sort_values('mood_p').head(10)
| feature | ttest_p | mood_p | 0_mean | 1_mean | mean_diff | 0_median | 1_median | median_diff | |
|---|---|---|---|---|---|---|---|---|---|
| 18 | amenity_tv | 7.461088e-12 | 5.170629e-24 | 123.90 | 162.09 | -38.19 | 90.0 | 123.0 | -33.0 |
| 36 | amenity_elevator | 1.000000e+00 | 6.697978e-18 | 148.60 | 157.57 | -8.97 | 106.0 | 127.0 | -21.0 |
| 40 | amenity_gym | 4.518148e-04 | 1.059955e-11 | 145.43 | 168.74 | -23.31 | 105.0 | 135.0 | -30.0 |
| 10 | amenity_hangers | 1.000000e+00 | 1.968827e-08 | 141.97 | 152.54 | -10.57 | 101.5 | 115.0 | -13.5 |
| 21 | amenity_fire extinguisher | 5.287875e-04 | 2.638008e-07 | 138.05 | 159.17 | -21.12 | 109.0 | 120.0 | -11.0 |
| 31 | amenity_free street parking | 7.174191e-01 | 1.684183e-06 | 156.59 | 145.45 | 11.14 | 122.0 | 102.0 | 20.0 |
| 0 | host_is_superhost | 1.000000e+00 | 1.857423e-06 | 155.13 | 146.43 | 8.70 | 115.0 | 116.0 | -1.0 |
| 15 | amenity_iron | 4.760851e-10 | 7.319899e-06 | 123.59 | 160.41 | -36.81 | 98.0 | 120.0 | -22.0 |
| 38 | amenity_luggage dropoff allowed | 1.000000e+00 | 9.724586e-06 | 151.68 | 151.02 | 0.66 | 116.5 | 106.0 | 10.5 |
| 13 | amenity_hair dryer | 4.241505e-07 | 3.598916e-05 | 122.83 | 157.69 | -34.86 | 97.0 | 120.0 | -23.0 |
Looking back at the boxplots, most of these amenities do seem to be associated with increased price when present, although some like luggage dropoff aren't.
There's actually only two categorical variables, each with 4 options. host_response_time is ordinal, room_type may or may not be ordinal.
cat_vars = df.columns[df.nunique() == 4]
cat_vars
Index(['host_response_time', 'room_type'], dtype='object')
#Boxplot of categorical variables
fig, ax = plt.subplots(1, 2, figsize=(20,9))
for i, axis in enumerate(ax.flatten()):
data = df[['price', cat_vars[i]]]
sns.boxplot(data=data, x=cat_vars[i], y='price', ax=axis)
sns.stripplot(data=data, x=cat_vars[i], y='price', ax=axis, s=2, alpha=.3, jitter=0.25, edgecolor='#333333', linewidth=.5)
axis.set_yscale('log')
There does not seem to be strong association with any host_response_time category and price. However, the entire home/apt category has the highest prices. This is similar to how variables related to the size of the listing is related to price.
# host since and other date times
date_vars = df.columns[df.dtypes == 'datetime64[ns]']
display(date_vars)
Index(['host_since', 'first_review', 'last_review'], dtype='object')
fig, ax = plt.subplots(3, 1, figsize=(20,20))
for i, axis in enumerate(ax):
sns.scatterplot(data=df, x=date_vars[i], y='price', ax=axis, size=0.2)
axis.set_yscale('log')
There doesn't appear to be much association between how long a host has been on AirBnb, how long ago the first review of a listing is, or how long ago a listing has been reviewed, with the price of the listing.
In Q4, we saw that the size of a listing is moderately correlated with its price. Let's take a closer look at this relationship by plotting bedrooms and beds vs. price.
fig, ax = plt.subplots(figsize=(20,9))
sns.stripplot(data=df, x='bedrooms', y='price', ax=ax, s=3, alpha=1, jitter=0.25, edgecolor='#333333', linewidth=.5);
sns.boxplot(data=df, x='bedrooms', y='price', ax=ax);
plt.xticks(rotation=45, ha='right', size=15);
plt.yscale('log')
y_ticks = list(chain(range(50,500,50), range(500, 1000, 100), range(1000, 5000, 1000)))
plt.yticks(ticks=y_ticks, labels=y_ticks);
fig, ax = plt.subplots(figsize=(20,9))
sns.stripplot(data=df, x='beds', y='price', ax=ax, s=3, alpha=1, jitter=0.25, edgecolor='#333333', linewidth=.5);
sns.boxplot(data=df, x='beds', y='price', ax=ax);
plt.xticks(rotation=45, ha='right', size=15);
plt.yscale('log')
y_ticks = list(chain(range(50,500,50), range(500, 1000, 100), range(1000, 5000, 1000)))
plt.yticks(ticks=y_ticks, labels=y_ticks);
The listings generally follow the trend of more bedrooms/beds having a higher price. However there are some outliers and anomalies.
There is a listing that has 13 bedrooms/beds. Going to the listing (see the link), it appears to be a joke listing for a haunted house, with no availability in the upcoming year.
display(df.query('beds == 13'))
display_link(df.query('beds == 13')['id'].iloc[0])
| id | neighbourhood | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2918 | 39106874 | Hastings-Sunrise | 49.28346 | -123.04316 | 25 | 31 | 0 | 20440735 | 1 | 2014-08-23 | NaN | NaN | NaN | 0.0 | 1.0 | 0.0 | 13 | Entire home/apt | 1.0 | 13.0 | 13.0 | 1 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0 | 0 | 0 | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
There's a 12 bed but two bedroom listing that is "dorm" style:
display(df.query('beds == 12'))
display_link(df.query('beds == 12')['id'].iloc[0])
| id | neighbourhood | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1166 | 20002260 | Oakridge | 49.23272 | -123.13075 | 200 | 2 | 0 | 141955126 | 1 | NaT | NaN | NaN | NaN | NaN | NaN | NaN | 12 | Entire home/apt | 2.0 | 2.0 | 12.0 | 1 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 8 | 0 | 0 | 2017-08-06 | 2018-08-20 | 0.18 | 83.0 | 9.0 | 9.0 | 9.0 | 10.0 | 9.0 | 8.0 |
Some listings have 0 beds but non-zero bedrooms. This seems to be oversights on the part of the host, and indeed some listings have already amended their number of bed (e.g. listing 322824).
df.query('beds == 0').head(10)
| id | neighbourhood | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 34 | 125176 | Riley Park | 49.24615 | -123.09462 | 85 | 2 | 312 | 622926 | 1 | 2011-05-24 | within an hour | 1.0 | 1.00 | 0.0 | 1.0 | 1.0 | 3 | Private room | 1.0 | 1.0 | 0.0 | 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 496 | 6 | 0 | 2011-08-01 | 2021-02-28 | 4.20 | 94.0 | 10.0 | 9.0 | 10.0 | 9.0 | 10.0 | 10.0 |
| 44 | 248014 | Grandview-Woodland | 49.29103 | -123.05782 | 100 | 31 | 140 | 1299977 | 1 | 2011-10-16 | within a day | 0.6 | NaN | 0.0 | 1.0 | 1.0 | 3 | Entire home/apt | 1.0 | 2.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1 | 0 | 0 | 2014-09-04 | 2014-09-04 | 0.01 | 100.0 | 10.0 | 8.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 52 | 322824 | Downtown | 49.27608 | -123.12452 | 175 | 30 | 242 | 1652613 | 1 | 2012-01-25 | within a few hours | 1.0 | 0.00 | 0.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 0.0 | 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 142 | 0 | 0 | 2012-04-01 | 2019-07-26 | 1.29 | 98.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 126 | 1343411 | Downtown Eastside | 49.27627 | -123.10013 | 95 | 1 | 0 | 6904778 | 1 | 2013-06-14 | NaN | NaN | 1.00 | 0.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 0.0 | 0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 55 | 6 | 0 | 2015-09-15 | 2020-11-22 | 0.81 | 94.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 10.0 |
| 138 | 1507975 | Riley Park | 49.24882 | -123.09121 | 64 | 3 | 253 | 51695 | 2 | 2009-11-05 | within an hour | 1.0 | 0.79 | 1.0 | 1.0 | 1.0 | 2 | Private room | 1.0 | 1.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 255 | 4 | 2 | 2013-08-16 | 2021-04-03 | 2.73 | 94.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 147 | 1703616 | Kitsilano | 49.26548 | -123.14579 | 100 | 30 | 263 | 8993938 | 1 | 2013-09-22 | within an hour | 1.0 | 0.33 | 0.0 | 1.0 | 1.0 | 4 | Entire home/apt | 1.5 | 1.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0 | 0 | 0 | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 161 | 1956739 | Downtown | 49.28474 | -123.10712 | 139 | 180 | 347 | 4292086 | 14 | 2012-11-30 | within an hour | 1.0 | 0.89 | 1.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 100 | 0 | 0 | 2013-12-22 | 2015-09-27 | 1.12 | 95.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 |
| 207 | 2847310 | Downtown Eastside | 49.28247 | -123.10342 | 161 | 2 | 314 | 6576530 | 1 | 2013-05-26 | within a few hours | 0.9 | 0.95 | 1.0 | 1.0 | 0.0 | 2 | Entire home/apt | 1.0 | NaN | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 297 | 8 | 1 | 2014-05-06 | 2021-03-21 | 3.51 | 99.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 218 | 3021408 | West Point Grey | 49.26229 | -123.20888 | 150 | 6 | 38 | 74460 | 1 | 2010-01-27 | within an hour | 1.0 | 1.00 | 0.0 | 1.0 | 1.0 | 4 | Entire home/apt | 1.0 | 2.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 84 | 6 | 1 | 2014-06-23 | 2021-03-26 | 1.01 | 96.0 | 10.0 | 9.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 222 | 3100878 | Downtown | 49.27622 | -123.12585 | 110 | 30 | 225 | 13651030 | 1 | 2014-03-29 | within a day | 1.0 | NaN | 0.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 0.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1 | 0 | 0 | 2019-09-02 | 2019-09-02 | 0.05 | 100.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 8.0 |
There are a number of extremely expensive one bedroom listings. This are explored below.
fig, ax = plt.subplots(figsize=(4,9))
sns.stripplot(data=df.query('bedrooms == 1'), x='bedrooms', y='price', ax=ax, s=3, alpha=1, jitter=0.25, edgecolor='#333333', linewidth=.5);
sns.boxplot(data=df.query('bedrooms == 1'), x='bedrooms', y='price', ax=ax);
ax.set_yscale('log')
plt.yticks(ticks=y_ticks, labels=y_ticks);
Some of the outlier have very high prices:
display(df.query('(bedrooms == 1) & (price > 1000)'))
df.query('(bedrooms == 1) & (price > 1000)').id.apply(display_link);
| id | neighbourhood | latitude | longitude | price | minimum_nights | availability_365 | host_id | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 346 | 5089343 | West End | 49.28165 | -123.12841 | 2000 | 2 | 0 | 1368497 | 1 | 2011-11-04 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 | 2 | Private room | 1.0 | 1.0 | 1.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 73 | 0 | 0 | 2016-06-19 | 2018-08-27 | 1.25 | 99.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 1221 | 20634127 | West End | 49.28400 | -123.13360 | 2100 | 30 | 0 | 11886329 | 1 | 2014-02-02 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 1.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 11 | 0 | 0 | 2017-09-02 | 2018-08-26 | 0.25 | 100.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
| 2713 | 37181228 | Downtown | 49.27886 | -123.12598 | 3250 | 180 | 363 | 262528648 | 1 | 2019-05-18 | NaN | NaN | NaN | 0.0 | 1.0 | 0.0 | 2 | Entire home/apt | 1.0 | 1.0 | 1.0 | 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0 | 0 | 0 | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 3592 | 44306270 | Downtown | 49.27403 | -123.12521 | 2200 | 180 | 179 | 169212821 | 1 | 2018-01-22 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 | 2 | Entire home/apt | 1.0 | 1.0 | 1.0 | 1 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0 | 0 | 0 | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 4044 | 47562842 | Renfrew-Collingwood | 49.24585 | -123.02397 | 1700 | 1 | 179 | 370922996 | 3 | 2020-10-06 | NaN | NaN | NaN | 0.0 | 1.0 | 1.0 | 1 | Private room | 1.0 | 1.0 | 2.0 | 1 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0 | 0 | 0 | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
Listing 37181228 and 44306270 look like they're actually a monthly rental price that's been mispriced as a nightly price. Notably they have a 6 month minimum stay.
I believe the other 3 listings are similarly mispriced, based on my knowledge of Vancouver monthly rental prices. Notably listing 5089343 says they are a 6 month sublet even though its not annotated in their minimum night limit.
First, let's take a look at the number of reviews a listing has versus its rating.
fig, ax = plt.subplots(figsize=(20,9))
sns.scatterplot(data=df, x='number_of_reviews', y='review_scores_rating', s=30, alpha=0.2, color='black', ax=ax)
<AxesSubplot:xlabel='number_of_reviews', ylabel='review_scores_rating'>
There is a notable absence of lower ratings as the number for reviews increase. This is due to consistently low ratings getting listings removed from AirBnB.
Plotting price against the review ratings shows there isn't much relationship between prices and ratings, although some of the higher priced outliers do have better ratings. Note the absence of some of the most expensive properties that don't have reviews.
fig, ax = plt.subplots(figsize=(20,9))
sns.scatterplot(data=df, x='review_scores_rating', y='price', s=30, alpha=0.2, color='black', ax=ax);
Removing very low ratings doesn't improve the correlation much.
display(df.corr().loc['review_scores_rating', 'price'])
display(df.query('review_scores_rating > 80').corr().loc['review_scores_rating', 'price'])
0.09799890047217603
0.10590171832230968
df['price'].corr(df['review_scores_rating'])
0.09799890047217624
Let's see if we can fit a simple linear model to predict the price based on features of the listing.
First, let's drop some features out of the model that probably shouldn't be used to predict.
## Predicting for price
# Drop columns that I don't think should be used
df_price = df.drop(labels=['id', 'latitude', 'longitude', 'host_id'], axis=1).copy()
Let's convert datetimes to a quantitative measure of how many days its been since that date.
# Helper func to get timedeltas
def days_since(old_time, new_time):
"""
Return the number of days that is new_time - old_time (datetime objs).
"""
return (new_time - old_time).days
# These datetime columns are dates in the past
dt_cols = list(df_price.columns[df_price.dtypes == 'datetime64[ns]'])
display(dt_cols)
['host_since', 'first_review', 'last_review']
# Convert datetime columns 'host_since', 'first_review', and 'last_review' to days until when the data was scraped
DATE_SCRAPED = pd.to_datetime('2021-04-15', format='%Y-%m-%d')
col_apply_inplace(df_price, dt_cols, days_since, new_time=DATE_SCRAPED)
df_price.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 4299 entries, 0 to 4298 Data columns (total 69 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 neighbourhood 4299 non-null object 1 price 4299 non-null int64 2 minimum_nights 4299 non-null int64 3 availability_365 4299 non-null int64 4 calculated_host_listings_count 4299 non-null int64 5 host_since 4170 non-null float64 6 host_response_time 2991 non-null object 7 host_response_rate 2991 non-null float64 8 host_acceptance_rate 3099 non-null float64 9 host_is_superhost 4170 non-null float64 10 host_has_profile_pic 4170 non-null float64 11 host_identity_verified 4170 non-null float64 12 accommodates 4299 non-null int64 13 room_type 4299 non-null object 14 bathrooms_text 4297 non-null float64 15 bedrooms 3987 non-null float64 16 beds 4263 non-null float64 17 instant_bookable 4299 non-null int64 18 amenity_wifi 4299 non-null float64 19 amenity_heating 4299 non-null float64 20 amenity_smoke alarm 4299 non-null float64 21 amenity_essentials 4299 non-null float64 22 amenity_kitchen 4299 non-null float64 23 amenity_long term stays allowed 4299 non-null float64 24 amenity_hangers 4299 non-null float64 25 amenity_washer 4299 non-null float64 26 amenity_dryer 4299 non-null float64 27 amenity_hair dryer 4299 non-null float64 28 amenity_hot water 4299 non-null float64 29 amenity_iron 4299 non-null float64 30 amenity_shampoo 4299 non-null float64 31 amenity_dedicated workspace 4299 non-null float64 32 amenity_tv 4299 non-null float64 33 amenity_carbon monoxide alarm 4299 non-null float64 34 amenity_dishes and silverware 4299 non-null float64 35 amenity_fire extinguisher 4299 non-null float64 36 amenity_refrigerator 4299 non-null float64 37 amenity_cooking basics 4299 non-null float64 38 amenity_microwave 4299 non-null float64 39 amenity_coffee maker 4299 non-null float64 40 amenity_stove 4299 non-null float64 41 amenity_oven 4299 non-null float64 42 amenity_free parking on premises 4299 non-null float64 43 amenity_private entrance 4299 non-null float64 44 amenity_bed linens 4299 non-null float64 45 amenity_free street parking 4299 non-null float64 46 amenity_dishwasher 4299 non-null float64 47 amenity_first aid kit 4299 non-null float64 48 amenity_patio or balcony 4299 non-null float64 49 amenity_extra pillows and blankets 4299 non-null float64 50 amenity_elevator 4299 non-null float64 51 amenity_cable tv 4299 non-null float64 52 amenity_luggage dropoff allowed 4299 non-null float64 53 amenity_air conditioning 4299 non-null float64 54 amenity_gym 4299 non-null float64 55 amenity_backyard 4299 non-null float64 56 number_of_reviews 4299 non-null int64 57 number_of_reviews_ltm 4299 non-null int64 58 number_of_reviews_l30d 4299 non-null int64 59 first_review 3499 non-null float64 60 last_review 3499 non-null float64 61 reviews_per_month 3499 non-null float64 62 review_scores_rating 3474 non-null float64 63 review_scores_accuracy 3462 non-null float64 64 review_scores_cleanliness 3462 non-null float64 65 review_scores_checkin 3461 non-null float64 66 review_scores_communication 3463 non-null float64 67 review_scores_location 3462 non-null float64 68 review_scores_value 3462 non-null float64 dtypes: float64(57), int64(9), object(3) memory usage: 2.3+ MB
# These are the variables where NA's have to be filled.
na_cols = df_price.columns[df_price.isna().sum()>0]
display(na_cols)
Index(['host_since', 'host_response_time', 'host_response_rate',
'host_acceptance_rate', 'host_is_superhost', 'host_has_profile_pic',
'host_identity_verified', 'bathrooms_text', 'bedrooms', 'beds',
'first_review', 'last_review', 'reviews_per_month',
'review_scores_rating', 'review_scores_accuracy',
'review_scores_cleanliness', 'review_scores_checkin',
'review_scores_communication', 'review_scores_location',
'review_scores_value'],
dtype='object')
# Their data types:
df_price.dtypes[na_cols]
host_since float64 host_response_time object host_response_rate float64 host_acceptance_rate float64 host_is_superhost float64 host_has_profile_pic float64 host_identity_verified float64 bathrooms_text float64 bedrooms float64 beds float64 first_review float64 last_review float64 reviews_per_month float64 review_scores_rating float64 review_scores_accuracy float64 review_scores_cleanliness float64 review_scores_checkin float64 review_scores_communication float64 review_scores_location float64 review_scores_value float64 dtype: object
Looking at the webpages for some of the NAs for features such as host_since, it seems like these NAs might be from scraping problems, as the hosts seem to have the information on the AirBnb website.
df_price[df_price['host_since'].isna()].head(3)
| neighbourhood | price | minimum_nights | availability_365 | calculated_host_listings_count | host_since | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_has_profile_pic | host_identity_verified | accommodates | room_type | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 65 | Kensington-Cedar Cottage | 500 | 5 | 0 | 2 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 8 | Entire home/apt | 2.0 | 4.0 | 5.0 | 0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 29 | 1 | 0 | 3192.0 | 248.0 | 0.27 | 94.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 |
| 73 | Kensington-Cedar Cottage | 77 | 30 | 158 | 2 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 1 | Entire home/apt | 1.0 | 1.0 | 1.0 | 0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 22 | 0 | 0 | 2894.0 | 397.0 | 0.23 | 95.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 9.0 |
| 129 | Kensington-Cedar Cottage | 125 | 4 | 20 | 4 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 4 | Entire home/apt | 1.0 | 1.0 | 2.0 | 1 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 14 | 1 | 0 | 2802.0 | 72.0 | 0.15 | 96.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 |
display(listings.loc[65,'listing_url'])
display(listings.loc[73,'listing_url'])
listings.loc[129,'listing_url']
'https://www.airbnb.com/rooms/498112'
'https://www.airbnb.com/rooms/654763'
'https://www.airbnb.com/rooms/1361276'
Based on this and my EDA results for Q4, Q5, and Q7, I'm gonna try to save some trouble and drop a lot of the host-related columns.
df_price = df_price.drop(labels=['host_since', 'host_response_time', 'host_response_rate',
'host_acceptance_rate', 'host_is_superhost', 'host_has_profile_pic',
'host_identity_verified'], axis=1)
How shall we fill the NA's?
For review scores, the median or mean makes sense.
For first_review or last_review, and reviews_per_month, NA's basically mean there's no reviews, so 0 makes sense.
cols = ['review_scores_rating', 'review_scores_accuracy',
'review_scores_cleanliness', 'review_scores_checkin',
'review_scores_communication', 'review_scores_location',
'review_scores_value']
# Fill NA with the median of each col
df_price[cols] = df_price[cols].fillna(value=df_price[cols].median())
# Fill NA with 0
df_price[['first_review', 'last_review', 'reviews_per_month']] = df_price[['first_review', 'last_review', 'reviews_per_month']].fillna(value=0)
For beds, bedrooms, and bathrooms_text, I could potentially try to figure out if I could infer some number for a missing feature based on the other two features. I took a look at the value counts for listings missing one of these features though, and decided it'd probably just be easier to fill the NAs with the median, which is 1 for all three features.
# Listings one of the three features contains an NA
# Fill NA with 100, otherwise value_counts() doesn't work with the NAs.
df_price[(df_price.beds.isna() | df_price.bedrooms.isna() | df_price.bathrooms_text.isna())][['bathrooms_text', 'bedrooms', 'beds']].fillna(100).value_counts()
bathrooms_text bedrooms beds
1.0 100.0 1.0 211
2.0 48
0.0 28
1.0 100.0 28
0.0 100.0 0.0 5
1.0 100.0 100.0 4
3.0 3
1.5 100.0 1.0 3
0.5 100.0 1.0 2
2.0 1.0 100.0 2
100.0 1.0 2
0.0 100.0 2.0 1
1.0 100.0 4.0 1
0.0 100.0 1.0 1
1.5 1.0 100.0 1
100.0 2.0 1
2.0 100.0 0.0 1
4.0 1
100.0 1.0 1.0 1
100.0 1
dtype: int64
# The medians
df_price[['bathrooms_text', 'bedrooms', 'beds']].median()
bathrooms_text 1.0 bedrooms 1.0 beds 1.0 dtype: float64
# Fill with the median
df_price[['bedrooms','beds','bathrooms_text']] = df_price[['bathrooms_text', 'bedrooms', 'beds']].fillna(1)
# These columns are strings that will have to be converted to dummies
dummy_cols = df_price.columns[df_price.dtypes == 'object']
print(dummy_cols)
Index(['neighbourhood', 'room_type'], dtype='object')
df_price_dummied = pd.get_dummies(df_price, columns=dummy_cols, prefix=dummy_cols, drop_first=True)
df_price_dummied.head(1)
| price | minimum_nights | availability_365 | calculated_host_listings_count | accommodates | bathrooms_text | bedrooms | beds | instant_bookable | amenity_wifi | amenity_heating | amenity_smoke alarm | amenity_essentials | amenity_kitchen | amenity_long term stays allowed | amenity_hangers | amenity_washer | amenity_dryer | amenity_hair dryer | amenity_hot water | amenity_iron | amenity_shampoo | amenity_dedicated workspace | amenity_tv | amenity_carbon monoxide alarm | amenity_dishes and silverware | amenity_fire extinguisher | amenity_refrigerator | amenity_cooking basics | amenity_microwave | amenity_coffee maker | amenity_stove | amenity_oven | amenity_free parking on premises | amenity_private entrance | amenity_bed linens | amenity_free street parking | amenity_dishwasher | amenity_first aid kit | amenity_patio or balcony | amenity_extra pillows and blankets | amenity_elevator | amenity_cable tv | amenity_luggage dropoff allowed | amenity_air conditioning | amenity_gym | amenity_backyard | number_of_reviews | number_of_reviews_ltm | number_of_reviews_l30d | first_review | last_review | reviews_per_month | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | neighbourhood_Downtown | neighbourhood_Downtown Eastside | neighbourhood_Dunbar Southlands | neighbourhood_Fairview | neighbourhood_Grandview-Woodland | neighbourhood_Hastings-Sunrise | neighbourhood_Kensington-Cedar Cottage | neighbourhood_Kerrisdale | neighbourhood_Killarney | neighbourhood_Kitsilano | neighbourhood_Marpole | neighbourhood_Mount Pleasant | neighbourhood_Oakridge | neighbourhood_Renfrew-Collingwood | neighbourhood_Riley Park | neighbourhood_Shaughnessy | neighbourhood_South Cambie | neighbourhood_Strathcona | neighbourhood_Sunset | neighbourhood_Victoria-Fraserview | neighbourhood_West End | neighbourhood_West Point Grey | room_type_Hotel room | room_type_Private room | room_type_Shared room | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 150 | 90 | 346 | 40 | 5 | 2.0 | 2.0 | 2.0 | 0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 16 | 0 | 0 | 3439.0 | 1509.0 | 0.14 | 93.0 | 9.0 | 9.0 | 10.0 | 9.0 | 10.0 | 9.0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
df_price_dummied.shape
(4299, 85)
# Rename for convenience
df_pd = df_price_dummied.copy()
OK, now that we have that data ready, let's:
# Independent variables are everything except price
X = df_pd.loc[:,~(df_pd.columns == 'price')]
X.shape
(4299, 84)
# Dependent variable is the price
y = df_pd['price']
y.shape
(4299,)
# Split into training and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state = 7, test_size = 0.3)
# Fit the linear model
lm_model = LinearRegression(normalize=True)
lm_model.fit(X_train, y_train)
LinearRegression(normalize=True)
# Get the predictions
y_preds = lm_model.predict(X_test)
# Get the r squared score
r_score = r2_score(y_test, y_preds)
display(r_score)
0.4174212347867585
The r squared score suggests it's moderately predictive. Let's take a look at the predictions.
# Reset the indices before combining into a df
y_test_reset = y_test.reset_index(drop=True)
# Results with diff and ratio of diff
results = pd.concat([pd.Series(y_preds), y_test_reset, y_preds - y_test_reset, (y_preds - y_test_reset)/y_test_reset], axis=1)
results.columns = ['pred', 'test', 'diff', 'diffratio']
results.head()
| pred | test | diff | diffratio | |
|---|---|---|---|---|
| 0 | 97.185779 | 85 | 12.185779 | 0.143362 |
| 1 | 104.957413 | 54 | 50.957413 | 0.943656 |
| 2 | 257.628975 | 300 | -42.371025 | -0.141237 |
| 3 | 159.827681 | 185 | -25.172319 | -0.136067 |
| 4 | 145.518773 | 250 | -104.481227 | -0.417925 |
fig, ax = plt.subplots(1,3, figsize=(18,4))
#plt.figure(figsize=(20,9))
sns.scatterplot(data=results, x='test', y='pred', s=8, alpha=.5, ax=ax[0])
sns.scatterplot(data=results, x='test', y='diff', s=8, alpha=.5, ax=ax[1])
sns.scatterplot(data=results, x='test', y='diffratio', s=8, alpha=.5, ax=ax[2]);
fig, ax = plt.subplots(2, 1, figsize=(20,15))
sns.histplot(data=results[['pred', 'test']], ax=ax[0])
sns.histplot(data=results[['pred', 'test']], ax=ax[1])
ax[1].set_yscale('log')
Looks like the model is under predicting higher priced listings (probably because there are fewer of them and maybe because the higher priced listings are increasing non-linearly (e.g. long tail by power law).
Also, the model is underpredicting some of the lower priced listings, into the negatives!
Let's take a look at the model coefficients:
coefs = pd.concat([X.columns.to_series().reset_index(drop=True), pd.Series(lm_model.coef_)], axis=1)
coefs.columns = ['feature', 'coef']
display(coefs.sort_values(by='coef'))
| feature | coef | |
|---|---|---|
| 81 | room_type_Hotel room | -103.862265 |
| 8 | amenity_wifi | -82.905897 |
| 67 | neighbourhood_Killarney | -69.092434 |
| 78 | neighbourhood_Victoria-Fraserview | -60.587149 |
| 83 | room_type_Shared room | -55.700613 |
| 11 | amenity_essentials | -46.478041 |
| 64 | neighbourhood_Hastings-Sunrise | -44.495485 |
| 69 | neighbourhood_Marpole | -36.397738 |
| 82 | room_type_Private room | -34.828268 |
| 77 | neighbourhood_Sunset | -34.259051 |
| 71 | neighbourhood_Oakridge | -32.436518 |
| 63 | neighbourhood_Grandview-Woodland | -31.030093 |
| 65 | neighbourhood_Kensington-Cedar Cottage | -22.533546 |
| 70 | neighbourhood_Mount Pleasant | -20.783547 |
| 72 | neighbourhood_Renfrew-Collingwood | -17.123916 |
| 24 | amenity_dishes and silverware | -14.196936 |
| 28 | amenity_microwave | -13.620067 |
| 13 | amenity_long term stays allowed | -12.740427 |
| 73 | neighbourhood_Riley Park | -11.841576 |
| 23 | amenity_carbon monoxide alarm | -11.786288 |
| 34 | amenity_bed linens | -11.689425 |
| 21 | amenity_dedicated workspace | -11.627452 |
| 19 | amenity_iron | -9.235616 |
| 55 | review_scores_checkin | -9.041794 |
| 74 | neighbourhood_Shaughnessy | -6.479640 |
| 58 | review_scores_value | -5.654125 |
| 17 | amenity_hair dryer | -5.511600 |
| 15 | amenity_washer | -5.216125 |
| 27 | amenity_cooking basics | -4.711642 |
| 62 | neighbourhood_Fairview | -3.791770 |
| 35 | amenity_free street parking | -3.122513 |
| 18 | amenity_hot water | -3.033521 |
| 45 | amenity_backyard | -2.763074 |
| 30 | amenity_stove | -1.824991 |
| 60 | neighbourhood_Downtown Eastside | -1.212032 |
| 47 | number_of_reviews_ltm | -1.181143 |
| 2 | calculated_host_listings_count | -0.844533 |
| 4 | bathrooms_text | -0.688620 |
| 46 | number_of_reviews | -0.151420 |
| 49 | first_review | 0.011380 |
| 50 | last_review | 0.019634 |
| 1 | availability_365 | 0.034652 |
| 0 | minimum_nights | 0.057085 |
| 52 | review_scores_rating | 0.534295 |
| 31 | amenity_oven | 0.723100 |
| 32 | amenity_free parking on premises | 0.763002 |
| 56 | review_scores_communication | 0.790579 |
| 33 | amenity_private entrance | 0.946486 |
| 12 | amenity_kitchen | 1.073324 |
| 48 | number_of_reviews_l30d | 1.566933 |
| 22 | amenity_tv | 1.893949 |
| 44 | amenity_gym | 1.987475 |
| 38 | amenity_patio or balcony | 2.059439 |
| 61 | neighbourhood_Dunbar Southlands | 2.428837 |
| 41 | amenity_cable tv | 2.649257 |
| 16 | amenity_dryer | 2.994325 |
| 25 | amenity_fire extinguisher | 3.631407 |
| 51 | reviews_per_month | 3.699216 |
| 29 | amenity_coffee maker | 4.596753 |
| 40 | amenity_elevator | 4.650124 |
| 57 | review_scores_location | 4.942458 |
| 59 | neighbourhood_Downtown | 5.940568 |
| 26 | amenity_refrigerator | 6.233001 |
| 53 | review_scores_accuracy | 6.430245 |
| 79 | neighbourhood_West End | 7.415226 |
| 37 | amenity_first aid kit | 7.506983 |
| 7 | instant_bookable | 8.116585 |
| 54 | review_scores_cleanliness | 8.836401 |
| 75 | neighbourhood_South Cambie | 8.844280 |
| 42 | amenity_luggage dropoff allowed | 8.934224 |
| 36 | amenity_dishwasher | 11.681134 |
| 9 | amenity_heating | 11.799414 |
| 66 | neighbourhood_Kerrisdale | 12.069540 |
| 39 | amenity_extra pillows and blankets | 12.310610 |
| 14 | amenity_hangers | 13.589207 |
| 3 | accommodates | 13.756285 |
| 76 | neighbourhood_Strathcona | 18.129825 |
| 10 | amenity_smoke alarm | 20.875682 |
| 43 | amenity_air conditioning | 22.040306 |
| 6 | beds | 23.639986 |
| 80 | neighbourhood_West Point Grey | 29.424941 |
| 20 | amenity_shampoo | 31.356555 |
| 68 | neighbourhood_Kitsilano | 36.156368 |
| 5 | bedrooms | 57.518078 |
The biggest positive predictor of price is the number of bedrooms whereas the biggest negative predictive of price is whether the room type is a hotel room.
for i, col in enumerate(X.columns):
print(X.columns[i] + " " + str(np.round(lm_model.coef_[i], decimals=3)))
minimum_nights 0.057 availability_365 0.035 calculated_host_listings_count -0.845 accommodates 13.756 bathrooms_text -0.689 bedrooms 57.518 beds 23.64 instant_bookable 8.117 amenity_wifi -82.906 amenity_heating 11.799 amenity_smoke alarm 20.876 amenity_essentials -46.478 amenity_kitchen 1.073 amenity_long term stays allowed -12.74 amenity_hangers 13.589 amenity_washer -5.216 amenity_dryer 2.994 amenity_hair dryer -5.512 amenity_hot water -3.034 amenity_iron -9.236 amenity_shampoo 31.357 amenity_dedicated workspace -11.627 amenity_tv 1.894 amenity_carbon monoxide alarm -11.786 amenity_dishes and silverware -14.197 amenity_fire extinguisher 3.631 amenity_refrigerator 6.233 amenity_cooking basics -4.712 amenity_microwave -13.62 amenity_coffee maker 4.597 amenity_stove -1.825 amenity_oven 0.723 amenity_free parking on premises 0.763 amenity_private entrance 0.946 amenity_bed linens -11.689 amenity_free street parking -3.123 amenity_dishwasher 11.681 amenity_first aid kit 7.507 amenity_patio or balcony 2.059 amenity_extra pillows and blankets 12.311 amenity_elevator 4.65 amenity_cable tv 2.649 amenity_luggage dropoff allowed 8.934 amenity_air conditioning 22.04 amenity_gym 1.987 amenity_backyard -2.763 number_of_reviews -0.151 number_of_reviews_ltm -1.181 number_of_reviews_l30d 1.567 first_review 0.011 last_review 0.02 reviews_per_month 3.699 review_scores_rating 0.534 review_scores_accuracy 6.43 review_scores_cleanliness 8.836 review_scores_checkin -9.042 review_scores_communication 0.791 review_scores_location 4.942 review_scores_value -5.654 neighbourhood_Downtown 5.941 neighbourhood_Downtown Eastside -1.212 neighbourhood_Dunbar Southlands 2.429 neighbourhood_Fairview -3.792 neighbourhood_Grandview-Woodland -31.03 neighbourhood_Hastings-Sunrise -44.495 neighbourhood_Kensington-Cedar Cottage -22.534 neighbourhood_Kerrisdale 12.07 neighbourhood_Killarney -69.092 neighbourhood_Kitsilano 36.156 neighbourhood_Marpole -36.398 neighbourhood_Mount Pleasant -20.784 neighbourhood_Oakridge -32.437 neighbourhood_Renfrew-Collingwood -17.124 neighbourhood_Riley Park -11.842 neighbourhood_Shaughnessy -6.48 neighbourhood_South Cambie 8.844 neighbourhood_Strathcona 18.13 neighbourhood_Sunset -34.259 neighbourhood_Victoria-Fraserview -60.587 neighbourhood_West End 7.415 neighbourhood_West Point Grey 29.425 room_type_Hotel room -103.862 room_type_Private room -34.828 room_type_Shared room -55.701
I'm curious as to how good the linear model is if you use a more minimal set of features.
As a guess, I'm going to try just with bedrooms, room_type, and neighbourhood.
df_price.columns
Index(['neighbourhood', 'price', 'minimum_nights', 'availability_365',
'calculated_host_listings_count', 'accommodates', 'room_type',
'bathrooms_text', 'bedrooms', 'beds', 'instant_bookable',
'amenity_wifi', 'amenity_heating', 'amenity_smoke alarm',
'amenity_essentials', 'amenity_kitchen',
'amenity_long term stays allowed', 'amenity_hangers', 'amenity_washer',
'amenity_dryer', 'amenity_hair dryer', 'amenity_hot water',
'amenity_iron', 'amenity_shampoo', 'amenity_dedicated workspace',
'amenity_tv', 'amenity_carbon monoxide alarm',
'amenity_dishes and silverware', 'amenity_fire extinguisher',
'amenity_refrigerator', 'amenity_cooking basics', 'amenity_microwave',
'amenity_coffee maker', 'amenity_stove', 'amenity_oven',
'amenity_free parking on premises', 'amenity_private entrance',
'amenity_bed linens', 'amenity_free street parking',
'amenity_dishwasher', 'amenity_first aid kit',
'amenity_patio or balcony', 'amenity_extra pillows and blankets',
'amenity_elevator', 'amenity_cable tv',
'amenity_luggage dropoff allowed', 'amenity_air conditioning',
'amenity_gym', 'amenity_backyard', 'number_of_reviews',
'number_of_reviews_ltm', 'number_of_reviews_l30d', 'first_review',
'last_review', 'reviews_per_month', 'review_scores_rating',
'review_scores_accuracy', 'review_scores_cleanliness',
'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value'],
dtype='object')
df_simple = df_price.copy()
df_simple = df_simple[['price', 'bedrooms', 'room_type', 'neighbourhood']]
# sd for simple_dummied
dummy_cols = ['room_type', 'neighbourhood']
df_sd = pd.get_dummies(df_simple, columns=dummy_cols, prefix=dummy_cols, drop_first=True)
X = df_sd.loc[:, ~(df_sd.columns == 'price')]
y = df_sd['price']
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=7)
lm_model = LinearRegression(normalize=True)
lm_model.fit(X_train, y_train)
y_preds = lm_model.predict(X_test)
display(r2_score(y_test, y_preds))
0.32007771950237185
# Reset the indices before combining into a df
y_test_reset = y_test.reset_index(drop=True)
# Results with diff and ratio of diff
results = pd.concat([pd.Series(y_preds), y_test_reset, y_preds - y_test_reset, (y_preds - y_test_reset)/y_test_reset], axis=1)
results.columns = ['pred', 'test', 'diff', 'diffratio']
fig, ax = plt.subplots(1,3, figsize=(18,4))
#plt.figure(figsize=(20,9))
sns.scatterplot(data=results, x='test', y='pred', s=8, alpha=.5, ax=ax[0])
sns.scatterplot(data=results, x='test', y='diff', s=8, alpha=.5, ax=ax[1])
sns.scatterplot(data=results, x='test', y='diffratio', s=8, alpha=.5, ax=ax[2]);
fig, ax = plt.subplots(2, 1, figsize=(20,9))
sns.histplot(data=results[['pred', 'test']], ax=ax[0])
sns.histplot(data=results[['pred', 'test']], ax=ax[1])
ax[1].set_yscale('log')
The model really does look worse than using all the features (esp. comparing the r2 score of 0.32 vs 0.41).
To summarize some key findings of the exploratory data analysis for AirBnb listings for the month of April in Vancouver:
I was able to fit a linear model that was moderately predictive of listing pricing (r2 of 0.41). However, this model needs to be tested on more data such as listings outside the month of April 2021. Indeed, it would be desireable to fit (probably more complex) models on a larger data set from a longer timei period, and use it to predict prices going forward.
Since the data is taken during the COVID-19 pandemic and associated travel restrictions, it is unclear if this model is generalizable to listings during non-pandemic times.